|
@@ -1,11 +1,10 @@
|
|
|
package cn.com.qmth.examcloud.core.oe.admin.dao.entity;
|
|
|
|
|
|
-import javax.persistence.*;
|
|
|
-
|
|
|
import cn.com.qmth.examcloud.core.oe.admin.dao.enums.AuditStatus;
|
|
|
-import cn.com.qmth.examcloud.core.oe.admin.dao.enums.DisciplineType;
|
|
|
import cn.com.qmth.examcloud.web.jpa.JpaEntity;
|
|
|
|
|
|
+import javax.persistence.*;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* @author chenken
|
|
@@ -14,8 +13,8 @@ import cn.com.qmth.examcloud.web.jpa.JpaEntity;
|
|
|
* @description ExamAuditEntity
|
|
|
*/
|
|
|
@Entity
|
|
|
-@Table(name = "ec_oe_exam_audit",indexes = {
|
|
|
- @Index(name = "IDX_E_O_E_A_001",columnList = "examRecordDataId",unique = true)
|
|
|
+@Table(name = "ec_oe_exam_audit", indexes = {
|
|
|
+ @Index(name = "IDX_E_O_E_A_001", columnList = "examRecordDataId", unique = true)
|
|
|
})
|
|
|
public class ExamAuditEntity extends JpaEntity {
|
|
|
|
|
@@ -37,6 +36,7 @@ public class ExamAuditEntity extends JpaEntity {
|
|
|
* 违纪类型
|
|
|
*/
|
|
|
private String disciplineType;
|
|
|
+
|
|
|
/**
|
|
|
* 违纪类型id(新加字段20200529 需求调整:由枚举,改为数据库管理)
|
|
|
*/
|
|
@@ -52,10 +52,12 @@ public class ExamAuditEntity extends JpaEntity {
|
|
|
* 审核人ID
|
|
|
*/
|
|
|
private String userId;
|
|
|
+
|
|
|
/**
|
|
|
* 审核人姓名
|
|
|
*/
|
|
|
private String auditUserName;
|
|
|
+
|
|
|
/**
|
|
|
* 审核状态
|
|
|
*/
|
|
@@ -111,12 +113,12 @@ public class ExamAuditEntity extends JpaEntity {
|
|
|
}
|
|
|
|
|
|
public String getAuditUserName() {
|
|
|
- return auditUserName;
|
|
|
- }
|
|
|
+ return auditUserName;
|
|
|
+ }
|
|
|
|
|
|
- public void setAuditUserName(String auditUserName) {
|
|
|
- this.auditUserName = auditUserName;
|
|
|
- }
|
|
|
+ public void setAuditUserName(String auditUserName) {
|
|
|
+ this.auditUserName = auditUserName;
|
|
|
+ }
|
|
|
|
|
|
public Long getIllegallyTypeId() {
|
|
|
return illegallyTypeId;
|
|
@@ -125,4 +127,5 @@ public class ExamAuditEntity extends JpaEntity {
|
|
|
public void setIllegallyTypeId(Long illegallyTypeId) {
|
|
|
this.illegallyTypeId = illegallyTypeId;
|
|
|
}
|
|
|
+
|
|
|
}
|