belongsTo(\app\common\model\custom\Custom::class, 'custom_id'); } public function project() { return $this->belongsTo(\app\common\model\project\Project::class, 'project_id'); } /** * @notes 关联org * @return \think\model\relation\HasOne * @author likeadmin * @date 2023/12/20 11:01 */ public function org() { return $this->hasOne(\app\common\model\dept\Orgs::class, 'id', 'org_id'); } /** * @notes 关联dept * @return \think\model\relation\HasOne * @author likeadmin * @date 2023/12/20 11:01 */ public function dept() { return $this->hasOne(\app\common\model\dept\Dept::class, 'id', 'dept_id'); } }