ExamReview.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. package com.keao.edu.user.entity;
  2. import com.keao.edu.auth.api.entity.SysUser;
  3. import com.keao.edu.user.enums.ExamRoomTeaherTypeEnum;
  4. import com.keao.edu.user.enums.YesOrNoEnum;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import org.apache.commons.lang3.builder.ToStringBuilder;
  7. /**
  8. * 对应数据库表(exam_review):
  9. */
  10. public class ExamReview {
  11. /** */
  12. private Long id;
  13. @ApiModelProperty(value = "学员报考编号")
  14. private Long examRegistrationId;
  15. @ApiModelProperty(value = "考试编号")
  16. private Long examinationBasicId;
  17. private Long examRoomId;
  18. /** */
  19. @ApiModelProperty(value = "教师编号")
  20. private Integer teacherId;
  21. private SysUser teacher;
  22. /** */
  23. @ApiModelProperty(value = "学员编号")
  24. private Integer studentId;
  25. /** 评价 */
  26. @ApiModelProperty(value = "评价")
  27. private String evaluationContent;
  28. @ApiModelProperty(value = "教师属性")
  29. private ExamRoomTeaherTypeEnum teacherType;
  30. /** 结果 */
  31. @ApiModelProperty(value = "结果")
  32. private Integer evaluationResult;
  33. private java.util.Date createTime;
  34. private java.util.Date updateTime;
  35. private String tenantId;
  36. @ApiModelProperty(value = "能否编辑")
  37. private YesOrNoEnum enableEdit;
  38. @ApiModelProperty(value = "考试基本信息")
  39. private ExaminationBasic examinationBasic;
  40. public Long getExamRegistrationId() {
  41. return examRegistrationId;
  42. }
  43. public void setExamRegistrationId(Long examRegistrationId) {
  44. this.examRegistrationId = examRegistrationId;
  45. }
  46. public ExaminationBasic getExaminationBasic() {
  47. return examinationBasic;
  48. }
  49. public void setExaminationBasic(ExaminationBasic examinationBasic) {
  50. this.examinationBasic = examinationBasic;
  51. }
  52. public Long getExamRoomId() {
  53. return examRoomId;
  54. }
  55. public void setExamRoomId(Long examRoomId) {
  56. this.examRoomId = examRoomId;
  57. }
  58. public void setId(Long id){
  59. this.id = id;
  60. }
  61. public Long getId(){
  62. return this.id;
  63. }
  64. public SysUser getTeacher() {
  65. return teacher;
  66. }
  67. public void setTeacher(SysUser teacher) {
  68. this.teacher = teacher;
  69. }
  70. public Long getExaminationBasicId() {
  71. return examinationBasicId;
  72. }
  73. public void setExaminationBasicId(Long examinationBasicId) {
  74. this.examinationBasicId = examinationBasicId;
  75. }
  76. public void setTeacherId(Integer teacherId){
  77. this.teacherId = teacherId;
  78. }
  79. public Integer getTeacherId(){
  80. return this.teacherId;
  81. }
  82. public ExamRoomTeaherTypeEnum getTeacherType() {
  83. return teacherType;
  84. }
  85. public void setTeacherType(ExamRoomTeaherTypeEnum teacherType) {
  86. this.teacherType = teacherType;
  87. }
  88. public void setStudentId(Integer studentId){
  89. this.studentId = studentId;
  90. }
  91. public Integer getStudentId(){
  92. return this.studentId;
  93. }
  94. public void setEvaluationContent(String evaluationContent){
  95. this.evaluationContent = evaluationContent;
  96. }
  97. public String getEvaluationContent(){
  98. return this.evaluationContent;
  99. }
  100. public Integer getEvaluationResult() {
  101. return evaluationResult;
  102. }
  103. public void setEvaluationResult(Integer evaluationResult) {
  104. this.evaluationResult = evaluationResult;
  105. }
  106. public void setCreateTime(java.util.Date createTime){
  107. this.createTime = createTime;
  108. }
  109. public java.util.Date getCreateTime(){
  110. return this.createTime;
  111. }
  112. public void setUpdateTime(java.util.Date updateTime){
  113. this.updateTime = updateTime;
  114. }
  115. public java.util.Date getUpdateTime(){
  116. return this.updateTime;
  117. }
  118. public void setTenantId(String tenantId){
  119. this.tenantId = tenantId;
  120. }
  121. public String getTenantId(){
  122. return this.tenantId;
  123. }
  124. public YesOrNoEnum getEnableEdit() {
  125. return enableEdit;
  126. }
  127. public void setEnableEdit(YesOrNoEnum enableEdit) {
  128. this.enableEdit = enableEdit;
  129. }
  130. @Override
  131. public String toString() {
  132. return ToStringBuilder.reflectionToString(this);
  133. }
  134. }