Valve.php
1.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
<?php
namespace app\admin\model\pipes;
use think\Model;
use traits\model\SoftDelete;
class Valve extends Model
{
use SoftDelete;
// 表名
protected $name = 'pipes_valve';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = 'deletetime';
// 追加属性
protected $append = [
'type_data_text'
];
public function getTypeDataList()
{
return ['1' => __('Type_data 1'), '2' => __('Type_data 2'), '3' => __('Type_data 3')];
}
public function getTypeDataTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['type_data']) ? $data['type_data'] : '');
$list = $this->getTypeDataList();
return isset($list[$value]) ? $list[$value] : '';
}
public function network() {
return $this->belongsTo('app\admin\model\pipes\Network', 'network_code', 'network_code', [], 'LEFT')->setEagerlyType(0);
}
public function route() {
return $this->belongsTo('app\admin\model\pipes\Route', 'route_code', 'route_code', [], 'LEFT')->setEagerlyType(0);
}
public function section() {
return $this->belongsTo('app\admin\model\pipes\Section', 'section_code', 'section_code', [], 'LEFT')->setEagerlyType(0);
}
}