65 lines
2.2 KiB
PHP
65 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\project_process_management;
|
||
|
||
|
||
use app\common\model\BaseModel;
|
||
use app\common\model\cost_project\CostProject;
|
||
use app\common\model\dept\Dept;
|
||
use app\common\model\dict\DictData;
|
||
use think\model\concern\SoftDelete;
|
||
|
||
|
||
/**
|
||
* ApplyWithSeal模型
|
||
* Class ApplyWithSeal
|
||
* @package app\common\model\project_process_management
|
||
*/
|
||
class ApplyWithSeal extends BaseModel
|
||
{
|
||
use SoftDelete;
|
||
protected $name = 'apply_with_seal';
|
||
protected $deleteTime = 'delete_time';
|
||
|
||
public function projectInfo()
|
||
{
|
||
return $this->hasOne(CostProject::class, 'id', 'project_id');
|
||
}
|
||
|
||
public function dept()
|
||
{
|
||
return $this->hasOne(Dept::class, 'id', 'depar');
|
||
}
|
||
|
||
public function getTypesTextAttr($value,$data){
|
||
$dict = DictData::where('type_value','apply_with_seal_type')->column('name','value');
|
||
return !empty($data['types']) ? $dict[$data['types']] : '';
|
||
}
|
||
|
||
public function getRidingseamTextAttr($value,$data){
|
||
$dict = DictData::where('type_value','isqfgz')->column('name','value');
|
||
return !empty($data['ridingseam']) ? $dict[$data['ridingseam']] : '';
|
||
}
|
||
|
||
public function getFiletypeTextAttr($value,$data){
|
||
$dict = DictData::where('type_value','apply_with_seal_file_type')->column('name','value');
|
||
return !empty($data['filetype']) ? $dict[$data['filetype']] : '';
|
||
}
|
||
|
||
public function getLoanTextAttr($value,$data){
|
||
$arr = [0=>'否', 1=>'是'];
|
||
return $arr[$data['loan']];
|
||
}
|
||
} |