67 lines
2.4 KiB
PHP
67 lines
2.4 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\supervision_work;
|
||
|
||
|
||
use app\common\model\BaseModel;
|
||
use app\common\model\dict\DictData;
|
||
use think\model\concern\SoftDelete;
|
||
|
||
|
||
/**
|
||
* 问题跟踪台账模型
|
||
* Class SupervisionProblem
|
||
* @package app\common\model\supervision_work
|
||
*/
|
||
class SupervisionProblem extends BaseModel
|
||
{
|
||
use SoftDelete;
|
||
protected $name = 'supervision_problem';
|
||
protected $deleteTime = 'delete_time';
|
||
|
||
public function getDataTypeTextAttr($value,$data): string
|
||
{
|
||
//1-巡视 2-旁站 3-验收 4-设备进场 5-见证取样 6-材料平行检验 7-实体平行检验
|
||
$arr = [1=>'巡视', 2=>'旁站', 3=>'验收', 4=>'设备进场', 5=>'见证取样', 6=>'试块试件见证', 7=>'材料平行检验', 8=>'实体平行检验'];
|
||
return $arr[$data['data_type']];
|
||
}
|
||
|
||
public function getProblemCateTextAttr($value,$data){
|
||
$dict = DictData::where('type_value','problem_cate')->column('name','value');
|
||
return !empty($data['problem_cate']) ? $dict[$data['problem_cate']] : '';
|
||
}
|
||
|
||
public function getRectificationResultTextAttr($value,$data): string
|
||
{
|
||
$arr = [0=>'通过', 1=>'不通过'];
|
||
return $arr[$data['rectification_result']];
|
||
}
|
||
|
||
public function getIsRectificationTextAttr($value,$data): string
|
||
{
|
||
$arr = [0=>'否', 1=>'是'];
|
||
return $arr[$data['is_rectification']];
|
||
}
|
||
|
||
public function getRectificationTimeAttr($value,$data): string
|
||
{
|
||
return !empty($data['rectification_time']) ? date('Y-m-d H:i:s',$data['rectification_time']) : '';
|
||
}
|
||
|
||
public function getRectificationAnnexAttr($value,$data)
|
||
{
|
||
return !empty($data['rectification_annex']) ? json_decode($data['rectification_annex'],true) : '';
|
||
}
|
||
} |