Ob.php
3.4 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
namespace app\admin\model;
use think\Model;
class Ob extends Model
{
// 表名
protected $name = 'ob';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = false;
// 追加属性
protected $append = [
'status_text',
'type_text',
'on_text',
'die_time_text',
'mourn_time_text',
'thank_time_text',
'round_type_text'
];
public function getStatusList()
{
return ['1' => __('Status 1'), '2' => __('Status 2')];
}
public function getTypeList()
{
return ['1' => __('Type 1'), '2' => __('Type 2'), '3' => __('Type 3'), '4' => __('Type 4')];
}
public function getOnList()
{
return ['0' => __('On 0'), '1' => __('On 1')];
}
public function getRoundTypeList()
{
return ['0' => __('Round_type 0'), '1' => __('Round_type 1')];
}
public function getStatusTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
$list = $this->getStatusList();
return isset($list[$value]) ? $list[$value] : '';
}
public function getTypeTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['type']) ? $data['type'] : '');
$list = $this->getTypeList();
return isset($list[$value]) ? $list[$value] : '';
}
public function getOnTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['on']) ? $data['on'] : '');
$list = $this->getOnList();
return isset($list[$value]) ? $list[$value] : '';
}
public function getDieTimeTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['die_time']) ? $data['die_time'] : '');
return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;
}
public function getMournTimeTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['mourn_time']) ? $data['mourn_time'] : '');
return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;
}
public function getThankTimeTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['thank_time']) ? $data['thank_time'] : '');
return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;
}
public function getRoundTypeTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['round_type']) ? $data['round_type'] : '');
$list = $this->getRoundTypeList();
return isset($list[$value]) ? $list[$value] : '';
}
protected function setDieTimeAttr($value)
{
return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value);
}
protected function setMournTimeAttr($value)
{
return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value);
}
protected function setThankTimeAttr($value)
{
return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value);
}
public function user()
{
return $this->belongsTo('User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
}
public function seller()
{
return $this->belongsTo('Seller', 'seller_id', 'id', [], 'LEFT')->setEagerlyType(0);
}
}