| 123456789101112131415161718 |
- <?php
- namespace app\common\model;
- /**
- * 渠道-角色数据表
- * @author Administrator
- */
- class ComplexRoleModel extends \think\Model
- {
- protected $pk = 'id';
- protected $table = 'nw_complex_role';
-
- protected $autoWriteTimestamp = true;
- protected $createTime = 'create_time';
- protected $updateTime = 'update_time';
- protected $dateFormat = 'Y-m-d H:i:s';
- }
|