CouponCondition.php 826 B

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