123456789101112131415161718 |
- <?php
- namespace app\cxinv\model;
- class ActionList extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'action_name' =>'varchar',//功能名称
- 'action_code' =>'varchar',//功能编号
- 'action_desc' =>'varchar',//功能描述
- 'status' =>'int',//状态 0禁用1启用
- 'is_show' =>'int',//是否显示 0 不显示1显示
- 'is_del' =>'tinyint',//是否删除0否1是
- 'addtime' =>'datetime',//
- 'updatetime' =>'datetime',//
- ];
- }
|