ManualRoomGradeModel.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. namespace app\admin\model\exam;
  3. use think\Model;
  4. class ManualRoomGradeModel extends Model
  5. {
  6. // 表名
  7. protected $name = 'exam_manual_room_grade_log';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'status_text'
  17. ];
  18. public function getStatusList()
  19. {
  20. return ['0' => __('Status 0'), '1' => __('Status 1')];
  21. }
  22. public function getStatusTextAttr($value, $data)
  23. {
  24. $value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
  25. $list = $this->getStatusList();
  26. return isset($list[$value]) ? $list[$value] : '';
  27. }
  28. public function admin()
  29. {
  30. return $this->belongsTo('app\admin\model\Admin', 'admin_id', 'id', [], 'LEFT')->setEagerlyType(0);
  31. }
  32. public function user()
  33. {
  34. return $this->belongsTo('app\admin\model\User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
  35. }
  36. public function paper()
  37. {
  38. return $this->belongsTo('Paper', 'id', 'id', [], 'LEFT')->setEagerlyType(0);
  39. }
  40. public function room()
  41. {
  42. return $this->belongsTo('Room', 'room_id', 'id', [], 'LEFT')->setEagerlyType(0);
  43. }
  44. public function question()
  45. {
  46. return $this->belongsTo('Question', 'question_id', 'id', [], 'LEFT')->setEagerlyType(0);
  47. }
  48. public function grade()
  49. {
  50. return $this->belongsTo('Grade', 'grade_id', 'id', [], 'LEFT')->setEagerlyType(0);
  51. }
  52. }