| 1234567891011121314151617181920212223242526 | <?phpnamespace app\common\model;class SoldierVideoSeriesModel extends BaseModel{    // 设置表名    protected $name = 'soldier_video_series';    protected $type = [        'start_time' => 'timestamp:Y-m-d H:i:s',        'end_time'   => 'timestamp:Y-m-d H:i:s',    ];    // 常量    const STATUS = [1 => '显示', 2 => '隐藏'];    const STATUS_SHOW = 1;    const STATUS_HIDE = 2;    public function getStatusTextAttr($value, $data)    {        return self::STATUS[$data['status']];    }}
 |