Department.php 733 B

123456789101112131415161718192021222324252627282930
  1. <?php namespace App\Facades\Servers\WechatWork;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 部门管理
  5. *
  6. * @method static array getList($id=null) 获取列表
  7. * @method static array getOne(int $id) 获取详情
  8. * @method static int add(array $data) 添加
  9. * @method static int edit(int $id,array $data) 编辑
  10. * @method static int del($id) 删除
  11. *
  12. * @see \App\Servers\WechatWork\Department
  13. *
  14. */
  15. class Department extends Facade
  16. {
  17. /**
  18. * Get the registered name of the component.
  19. *
  20. * @return string
  21. */
  22. protected static function getFacadeAccessor()
  23. {
  24. return '\App\Servers\WechatWork\Department';
  25. }
  26. }
  27. ?>