1234567891011121314151617 |
- <?php
- namespace app\cxinv\model;
- class RoleAction extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'role_id' =>'bigint',//
- 'action_data' =>'text',//
- 'action_conllect' =>'text',//
- 'private_data' =>'text',//
- 'status' =>'int',//
- 'addtime' =>'datetime',//
- 'updatetime' =>'datetime',//
- ];
- }
|