JewelLog.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. namespace app\admin\model\user;
  3. use think\Model;
  4. class JewelLog extends Model
  5. {
  6. // 表名
  7. protected $name = 'user_jewel_log';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = false;
  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'), '6' => __('Type 6'), '7' => __('Type 7'), '8' => __('Type 8'), '10000' => __('Type 10000')];
  21. }
  22. public function getTypeTextAttr($value, $data)
  23. {
  24. $value = $value ? $value : (isset($data['type']) ? $data['type'] : '');
  25. $list = $this->getTypeList();
  26. return isset($list[$value]) ? $list[$value] : '';
  27. }
  28. public function user()
  29. {
  30. return $this->belongsTo('app\admin\model\User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
  31. }
  32. }