ManualGradeModel.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. namespace app\admin\model\exam;
  3. use think\Model;
  4. class ManualGradeModel extends Model
  5. {
  6. // 表名
  7. protected $name = 'exam_manual_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. 'kind_text',
  17. 'status_text'
  18. ];
  19. public function getKindList()
  20. {
  21. return ['PAPER' => __('Paper'), 'ROOM' => __('Room')];
  22. }
  23. public function getStatusList()
  24. {
  25. return ['0' => __('Status 0'), '1' => __('Status 1')];
  26. }
  27. public function getKindTextAttr($value, $data)
  28. {
  29. $value = $value ? $value : (isset($data['kind']) ? $data['kind'] : '');
  30. $list = $this->getKindList();
  31. return isset($list[$value]) ? $list[$value] : '';
  32. }
  33. public function getStatusTextAttr($value, $data)
  34. {
  35. $value = $value ? $value : (isset($data['status']) ? $data['status'] : '');
  36. $list = $this->getStatusList();
  37. return isset($list[$value]) ? $list[$value] : '';
  38. }
  39. public function admin()
  40. {
  41. return $this->belongsTo('app\admin\model\Admin', 'id', 'id', [], 'LEFT')->setEagerlyType(0);
  42. }
  43. public function user()
  44. {
  45. return $this->belongsTo('app\admin\model\User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);
  46. }
  47. public function paper()
  48. {
  49. return $this->belongsTo('Paper', 'paper_id', 'id', [], 'LEFT')->setEagerlyType(0);
  50. }
  51. public function question()
  52. {
  53. return $this->belongsTo('Question', 'question_id', 'id', [], 'LEFT')->setEagerlyType(0);
  54. }
  55. }