Video.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Video extends Model
  5. {
  6. // 表名
  7. protected $table = 'video';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'integer';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = false;
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'is_show_text'
  17. ];
  18. protected static function init()
  19. {
  20. self::afterInsert(function ($row) {
  21. $pk = $row->getPk();
  22. $row->getQuery()->where($pk, $row[$pk])->update(['weigh' => $row[$pk]]);
  23. });
  24. }
  25. public function getIsShowList()
  26. {
  27. return ['1' => __('Is_show 1'), '0' => __('Is_show 0')];
  28. }
  29. public function getIsShowTextAttr($value, $data)
  30. {
  31. $value = $value ? $value : (isset($data['is_show']) ? $data['is_show'] : '');
  32. $list = $this->getIsShowList();
  33. return isset($list[$value]) ? $list[$value] : '';
  34. }
  35. public function type()
  36. {
  37. return $this->belongsTo('videotype', 'type_id', 'id', [], 'LEFT')->setEagerlyType(0);
  38. }
  39. }