Noticesnormal.php
2.5 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
<?php
namespace app\admin\model\notices;
use think\Model;
class Noticesnormal extends Model
{
// 表名
protected $name = 'notices_normal';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
// 追加属性
protected $append = [
'createtime_text',
'updatetime_text',
'send_type_text',
'rec_type_text',
'notice_type_text',
'read_text',
];
public function getSendTypeList(){
return [ 1 => '会员', 2 => '管理员'];
}
public function getRecTypeList(){
return [ 1 => '会员', 2 => '管理员'];
}
public function getNoticeTypeList(){
return [ 0 => '公告通知', 1 => '异常处理通知'];
}
public function getReadList(){
return [ 0 => '未读', 1 => '已读'];
}
public function getSendTypeTextAttr($value, $data){
$value = $value ? $value : (isset($data['send_type']) ? $data['send_type'] : '');
$list = $this->getSendTypeList();
return isset($list[$value]) ? $list[$value] : '';
}
public function getRecTypeTextAttr($value, $data){
$value = $value ? $value : (isset($data['rec_type']) ? $data['rec_type'] : '');
$list = $this->getRecTypeList();
return isset($list[$value]) ? $list[$value] : '';
}
public function getNoticeTypeTextAttr($value, $data){
$value = $value ? $value : (isset($data['notice_type']) ? $data['notice_type'] : '');
$list = $this->getNoticeTypeList();
return isset($list[$value]) ? $list[$value] : '';
}
public function getReadTextAttr($value, $data){
$value = $value ? $value : (isset($data['read']) ? $data['read'] : '');
$list = $this->getReadList();
return isset($list[$value]) ? $list[$value] : '';
}
public function getCreatetimeTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['createtime']) ? $data['createtime'] : '');
if (empty($value)){
return '';
}else{
return date('Y-m-d H:i:s', $value);
}
}
public function getUpdatetimeTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['updatetime']) ? $data['updatetime'] : '');
if (empty($value)){
return '';
}else{
return date('Y-m-d H:i:s', $value);
}
}
}