Action.php 661 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\bug\model;
  3. class Action extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'menuid' =>'bigint',//菜单id
  9. 'action_code' =>'varchar',//功能code
  10. 'status' =>'int',//状态
  11. 'addtime' =>'datetime',//添加时间
  12. 'updatetime' =>'datetime',//更新时间
  13. ];
  14. public $status_cn=["禁用","启用"];
  15. protected $updateTime="updatetime";
  16. protected $createTime="addtime";
  17. public function ActionInfo(){
  18. return $this->belongsTo(ActionList::class,"action_code",'action_code')->bind(["action_name"]);
  19. }
  20. }