Report.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace app\admin\model\user;
  3. use think\Model;
  4. class Report extends Model
  5. {
  6. // 表名
  7. protected $name = 'user_report';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = false;
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'status_text'
  17. ];
  18. public function user()
  19. {
  20. return $this->belongsTo('app\admin\model\User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
  21. }
  22. public function ruser()
  23. {
  24. return $this->belongsTo('app\admin\model\User', 'ruser_id', 'id', [], 'LEFT')->setEagerlyType(0);
  25. }
  26. public function getStatusList()
  27. {
  28. return ['0' =>__('Status 0'), '1' =>__('Status 1')];
  29. }
  30. public function getStatusTextAttr($value, $data)
  31. {
  32. $value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
  33. $list = $this->getStatusList();
  34. return isset($list[$value]) ? $list[$value] : '';
  35. }
  36. /**
  37. * 获取举报对应的多态模型。
  38. */
  39. public function reportable()
  40. {
  41. return $this->morphTo();
  42. }
  43. }