1234567891011121314151617181920212223 |
- <?php
- namespace app\common\model\base\org;
- /**
- * @title : 组织部门/组织科室模型
- * @desc :
- * @Author : Rock
- * @Date : 2022-01-10 09:44:23
- * @LastEditTime : 2023-02-03 10:18:34
- */
- use app\common\model\Common;
- class OrgDepart extends Common
- {
- protected $name = "system_org_depart";
- protected $pk = "depart_id";
- protected $createTime = 'create_at';
- protected $updateTime = 'update_at';
- protected $deleteTime = 'delete_at';
- public function org()
- {
- return $this->belongsTo(Org::class,'org_id','org_id');
- }
- }
|