Partytype.php 851 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Partytype extends Model
  5. {
  6. // 表名
  7. protected $name = 'party_type';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = false;
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'room_type_text'
  17. ];
  18. public function getRoomTypeList()
  19. {
  20. return ['1' => __('Room_type 1'), '2' => __('Room_type 2')];
  21. }
  22. public function getRoomTypeTextAttr($value, $data)
  23. {
  24. $value = $value ? $value : (isset($data['room_type']) ? $data['room_type'] : '');
  25. $list = $this->getRoomTypeList();
  26. return isset($list[$value]) ? $list[$value] : '';
  27. }
  28. }