12345678910111213141516171819 |
- <?php
- /**
- * AuthAccessModel.php UTF-8
- * 权限表
- *
- * @date : 2018/5/22 10:39
- *
- * @license 这不是一个自由软件,未经授权不许任何使用和传播。
- * @author : wuyonghong <wyh@huosdk.com>
- * @version : HUOSDK 8.0
- */
- namespace huo\model\user;
- use huo\model\common\CommonModel;
- class AuthAccessModel extends CommonModel {
- protected $name = 'auth_access';
- }
|