123456789101112131415161718192021222324252627282930 |
- <?php namespace App\Facades\Servers\WechatWork;
- use Illuminate\Support\Facades\Facade;
- /**
- * 部门管理
- *
- * @method static array getList($id=null) 获取列表
- * @method static array getOne(int $id) 获取详情
- * @method static int add(array $data) 添加
- * @method static int edit(int $id,array $data) 编辑
- * @method static int del($id) 删除
- *
- * @see \App\Servers\WechatWork\Department
- *
- */
- class Department extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\WechatWork\Department';
- }
- }
- ?>
|