| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | <?phpnamespace app\admin\model;use think\Model;class Task extends Model{            // 表名    protected $name = 'task';        // 自动写入时间戳字段    protected $autoWriteTimestamp = 'int';    // 定义时间戳字段名    protected $createTime = 'createtime';    protected $updateTime = 'updatetime';    protected $deleteTime = false;    // 追加属性    protected $append = [        'type_id_text',        'url_type_text',        'is_show_text'    ];            public function getTypeIdList()    {        return ['1' => __('Type_id 1'), '2' => __('Type_id 2')];    }    public function getUrlTypeList()    {        return ['1' => __('Url_type 1'), '2' => __('Url_type 2')];    }    public function getIsShowList()    {        return ['1' => __('Is_show 1'), '0' => __('Is_show 0')];    }    public function getTypeIdTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['type_id']) ? $data['type_id'] : '');        $list = $this->getTypeIdList();        return isset($list[$value]) ? $list[$value] : '';    }    public function getUrlTypeTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['url_type']) ? $data['url_type'] : '');        $list = $this->getUrlTypeList();        return isset($list[$value]) ? $list[$value] : '';    }    public function getIsShowTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['is_show']) ? $data['is_show'] : '');        $list = $this->getIsShowList();        return isset($list[$value]) ? $list[$value] : '';    }}
 |