Files
yycea/application/admin/model/wdsxh/message/MessageNotification.php
2026-03-17 09:56:06 +08:00

50 lines
935 B
PHP

<?php
namespace app\admin\model\wdsxh\message;
use think\Model;
class MessageNotification extends Model
{
// 表名
protected $name = 'wdsxh_message_notification';
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'integer';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected $deleteTime = false;
// 追加属性
protected $append = [
'type_text'
];
public function getTypeList()
{
return ['1' => __('Type 1'), '2' => __('Type 2'), '3' => __('Type 3')];
}
public function getTypeTextAttr($value, $data)
{
$value = $value ? $value : (isset($data['type']) ? $data['type'] : '');
$list = $this->getTypeList();
return isset($list[$value]) ? $list[$value] : '';
}
}