72 lines
2.2 KiB
PHP
72 lines
2.2 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\common\model\custom;
|
||
|
||
|
||
use app\common\model\BaseModel;
|
||
use app\common\model\dict\DictData;
|
||
use app\common\model\GeoProvince;
|
||
use think\model\concern\SoftDelete;
|
||
|
||
|
||
/**
|
||
* Custom模型
|
||
* Class Custom
|
||
* @package app\common\model\custom
|
||
*/
|
||
class Custom extends BaseModel
|
||
{
|
||
use SoftDelete;
|
||
protected $name = 'custom';
|
||
protected $deleteTime = 'delete_time';
|
||
|
||
|
||
public function province()
|
||
{
|
||
return $this->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']] : '';
|
||
}
|
||
} |