ActionList.php 403 B

12345678910111213141516
  1. <?php
  2. namespace app\bug\model;
  3. class ActionList extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'action_name' =>'varchar',//功能名称
  9. 'action_code' =>'varchar',//功能code
  10. 'action_desc' =>'varchar',//功能描述
  11. 'status' =>'int',//状态
  12. 'is_show' =>'int',//是否显示
  13. ];
  14. }