12345678910111213141516 |
- <?php
- namespace app\bug\model;
- class ActionList extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'action_name' =>'varchar',//功能名称
- 'action_code' =>'varchar',//功能code
- 'action_desc' =>'varchar',//功能描述
- 'status' =>'int',//状态
- 'is_show' =>'int',//是否显示
- ];
- }
|