TemplateMsg.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. namespace app\admin\model\shop;
  3. use think\Model;
  4. class TemplateMsg extends Model
  5. {
  6. // 表名
  7. protected $name = 'shop_template_msg';
  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. 'event_text'
  18. ];
  19. public function getTypeList()
  20. {
  21. return ['1' => __('Type 1'), '2' => __('Type 2'), '3' => __('Type 3'), '4' => __('Type 4')];
  22. }
  23. public function getEventList()
  24. {
  25. return ['0' => __('Event 0'), '1' => __('Event 1'), '2' => __('Event 2'), '3' => __('Event 3'), '4' => __('Event 4')];
  26. }
  27. public function getTypeTextAttr($value, $data)
  28. {
  29. $value = $value ?: ($data['type'] ?? '');
  30. $list = $this->getTypeList();
  31. return $list[$value] ?? '';
  32. }
  33. public function getEventTextAttr($value, $data)
  34. {
  35. $value = $value ?: ($data['event'] ?? '');
  36. $list = $this->getEventList();
  37. return $list[$value] ?? '';
  38. }
  39. }