hasOne(GeoProvince::class, 'province_code','province'); } /** * @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'); } public function getCustomTypeTextAttr($value,$data){ $dict = DictData::where('type_value','custom_type')->column('name','value'); return !empty($data['custom_type']) ? $dict[$data['custom_type']] : ''; } public function getCreditRatingTextAttr($value,$data){ $dict = DictData::where('type_value','credit_rating')->column('name','value'); return !empty($data['credit_rating']) ? $dict[$data['credit_rating']] : ''; } }