Noticesnormal.php 2.5 KB
<?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);
        }
    }

}