Msg.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. namespace app\admin\model\msg;
  3. use think\Model;
  4. class Msg extends Model
  5. {
  6. // 表名
  7. protected $name = 'sys_msg';
  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. 'is_read_text'
  18. ];
  19. public function getTypeList()
  20. {
  21. return ['1' => __('Type 1'), '2' => __('Type 2'), '3' => __('Type 3'), '4' => __('Type 4'), '5' => __('Type 5'), '6' => __('Type 6')];
  22. }
  23. public function getIsReadList()
  24. {
  25. return ['1' => __('Is_read 1'), '0' => __('Is_read 0')];
  26. }
  27. public function getTypeTextAttr($value, $data)
  28. {
  29. $value = $value ? $value : (isset($data['type']) ? $data['type'] : '');
  30. $list = $this->getTypeList();
  31. return isset($list[$value]) ? $list[$value] : '';
  32. }
  33. public function getIsReadTextAttr($value, $data)
  34. {
  35. $value = $value ? $value : (isset($data['is_read']) ? $data['is_read'] : '');
  36. $list = $this->getIsReadList();
  37. return isset($list[$value]) ? $list[$value] : '';
  38. }
  39. public function user()
  40. {
  41. return $this->belongsTo('app\admin\model\User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
  42. }
  43. }