|
@@ -8,6 +8,8 @@ import com.qmth.teachcloud.common.base.BaseEntity;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -49,8 +51,8 @@ public class ExamTaskPrint extends BaseEntity implements Serializable {
|
|
|
@TableField("exam_end_time")
|
|
|
private Long examEndTime;
|
|
|
|
|
|
- @TableField("package_code")
|
|
|
- private String packageCode;
|
|
|
+ @TableField("package_seq")
|
|
|
+ private String packageSeq;
|
|
|
|
|
|
@TableField("exam_place")
|
|
|
private String examPlace;
|
|
@@ -58,8 +60,8 @@ public class ExamTaskPrint extends BaseEntity implements Serializable {
|
|
|
@TableField("exam_room")
|
|
|
private String examRoom;
|
|
|
|
|
|
- @TableField("invigilatro_teacher")
|
|
|
- private String invigilatroTeacher;
|
|
|
+ @TableField("invigilator_teacher")
|
|
|
+ private String invigilatorTeacher;
|
|
|
|
|
|
@TableField("class_id")
|
|
|
private String classId;
|
|
@@ -70,8 +72,15 @@ public class ExamTaskPrint extends BaseEntity implements Serializable {
|
|
|
@TableField(value = "student_count")
|
|
|
private Integer studentCount;
|
|
|
|
|
|
- @TableField(value = "print_house")
|
|
|
- private String printHouse;
|
|
|
+ @TableField(value = "print_house_id")
|
|
|
+ private String printHouseId;
|
|
|
+
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ @TableField("exam_detail_id")
|
|
|
+ private Long examDetailId;
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private List<Map> extendFields;
|
|
|
|
|
|
public static long getSerialVersionUID() {
|
|
|
return serialVersionUID;
|
|
@@ -141,12 +150,12 @@ public class ExamTaskPrint extends BaseEntity implements Serializable {
|
|
|
this.examEndTime = examEndTime;
|
|
|
}
|
|
|
|
|
|
- public String getPackageCode() {
|
|
|
- return packageCode;
|
|
|
+ public String getPackageSeq() {
|
|
|
+ return packageSeq;
|
|
|
}
|
|
|
|
|
|
- public void setPackageCode(String packageCode) {
|
|
|
- this.packageCode = packageCode;
|
|
|
+ public void setPackageSeq(String packageSeq) {
|
|
|
+ this.packageSeq = packageSeq;
|
|
|
}
|
|
|
|
|
|
public String getExamPlace() {
|
|
@@ -165,12 +174,12 @@ public class ExamTaskPrint extends BaseEntity implements Serializable {
|
|
|
this.examRoom = examRoom;
|
|
|
}
|
|
|
|
|
|
- public String getInvigilatroTeacher() {
|
|
|
- return invigilatroTeacher;
|
|
|
+ public String getInvigilatorTeacher() {
|
|
|
+ return invigilatorTeacher;
|
|
|
}
|
|
|
|
|
|
- public void setInvigilatroTeacher(String invigilatroTeacher) {
|
|
|
- this.invigilatroTeacher = invigilatroTeacher;
|
|
|
+ public void setInvigilatorTeacher(String invigilatorTeacher) {
|
|
|
+ this.invigilatorTeacher = invigilatorTeacher;
|
|
|
}
|
|
|
|
|
|
public String getClassId() {
|
|
@@ -197,11 +206,27 @@ public class ExamTaskPrint extends BaseEntity implements Serializable {
|
|
|
this.studentCount = studentCount;
|
|
|
}
|
|
|
|
|
|
- public String getPrintHouse() {
|
|
|
- return printHouse;
|
|
|
+ public String getPrintHouseId() {
|
|
|
+ return printHouseId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPrintHouseId(String printHouseId) {
|
|
|
+ this.printHouseId = printHouseId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getExamDetailId() {
|
|
|
+ return examDetailId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamDetailId(Long examDetailId) {
|
|
|
+ this.examDetailId = examDetailId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Map> getExtendFields() {
|
|
|
+ return extendFields;
|
|
|
}
|
|
|
|
|
|
- public void setPrintHouse(String printHouse) {
|
|
|
- this.printHouse = printHouse;
|
|
|
+ public void setExtendFields(List<Map> extendFields) {
|
|
|
+ this.extendFields = extendFields;
|
|
|
}
|
|
|
}
|