SoldierVideoSeriesModel.php 517 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace app\common\model;
  3. class SoldierVideoSeriesModel extends BaseModel
  4. {
  5. // 设置表名
  6. protected $name = 'soldier_video_series';
  7. protected $type = [
  8. 'start_time' => 'timestamp:Y-m-d H:i:s',
  9. 'end_time' => 'timestamp:Y-m-d H:i:s',
  10. ];
  11. // 常量
  12. const STATUS = [1 => '显示', 2 => '隐藏'];
  13. const STATUS_SHOW = 1;
  14. const STATUS_HIDE = 2;
  15. public function getStatusTextAttr($value, $data)
  16. {
  17. return self::STATUS[$data['status']];
  18. }
  19. }