Market.php 741 B

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