OrderExpressLog.php
1.1 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
<?php
namespace addons\shopro\model;
use think\Model;
use addons\shopro\exception\Exception;
use think\Db;
/**
* 订单包裹记录
*/
class OrderExpressLog extends Model
{
// 表名,不含前缀
protected $name = 'shopro_order_express_log';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $hidden = ['updatetime'];
// //列表动态隐藏字段
// protected static $list_hidden = ['content', 'params', 'images', 'service_ids'];
protected $append = [
'status_name'
];
public static function getStatusList() {
return [
0 => '暂无轨迹信息',
1 => '已揽收',
2 => '运输中', // 在途中
3 => '已签收', // 签收
4 => '问题件'
];
}
public function getStatusNameAttr($value, $data) {
$status = substr($data['status'], 0, 1);
$list = $this->getStatusList();
return isset($list[$status]) ? $list[$status] : '';
}
}