12345678910111213141516171819202122 |
- <?php
- namespace app\bug\model;
- class Action extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'menuid' =>'bigint',//菜单id
- 'action_code' =>'varchar',//功能code
- 'status' =>'int',//状态
- 'addtime' =>'datetime',//添加时间
- 'updatetime' =>'datetime',//更新时间
- ];
- public $status_cn=["禁用","启用"];
- protected $updateTime="updatetime";
- protected $createTime="addtime";
- public function ActionInfo(){
- return $this->belongsTo(ActionList::class,"action_code",'action_code')->bind(["action_name"]);
- }
-
- }
|