Evaluate.php
1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
namespace app\admin\model\workorder;
use think\Model;
class Evaluate extends Model
{
// 表名
protected $name = 'workorder_evaluate';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = false;
protected $deleteTime = false;
// 追加属性
protected $append = [
'stars_text',
'solved_text'
];
public function getStarsList()
{
return [
'1' => __('Stars 1'),
'2' => __('Stars 2'),
'3' => __('Stars 3'),
'4' => __('Stars 4'),
'5' => __('Stars 5')
];
}
public function getSolvedList()
{
return ['0' => __('Solved 0'), '1' => __('Solved 1')];
}
public function getStarsTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['stars']) ? $data['stars'] : '');
$list = $this->getStarsList();
return isset($list[$value]) ? $list[$value] : '';
}
public function getSolvedTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['solved']) ? $data['solved'] : '');
$list = $this->getSolvedList();
return isset($list[$value]) ? $list[$value] : '';
}
public function orders()
{
return $this->belongsTo('Orders', 'order_id', 'id', [], 'LEFT')->setEagerlyType(0);
}
public function user()
{
return $this->belongsTo('app\admin\model\User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
}
public function category()
{
return $this->belongsTo('Category', 'category_id', 'id', [], 'LEFT')->setEagerlyType(0);
}
}