Gift.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace app\admin\model\bag;
  3. use think\Model;
  4. class Gift extends Model
  5. {
  6. // 表名
  7. protected $name = 'new_gift';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = false;
  10. // 定义时间戳字段名
  11. protected $createTime = false;
  12. protected $updateTime = false;
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'gift_type_text'
  17. ];
  18. public function getGiftTypeList()
  19. {
  20. return ['1' => __('Gift_type 1'), '2' => __('Gift_type 2'), '3' => __('Gift_type 3'), '4' => __('Gift_type 4'), '5' => __('Gift_type 5')];
  21. }
  22. public function getGiftTypeTextAttr($value, $data)
  23. {
  24. $value = $value ? $value : (isset($data['gift_type']) ? $data['gift_type'] : '');
  25. $list = $this->getGiftTypeList();
  26. return isset($list[$value]) ? $list[$value] : '';
  27. }
  28. public function newbag()
  29. {
  30. return $this->belongsTo('app\admin\model\bag\Bag', 'bag_id', 'id', [], 'LEFT')->setEagerlyType(0);
  31. }
  32. }