|
@@ -0,0 +1,161 @@
|
|
|
+package com.qmth.distributed.print.business.bean.dto;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Date: 2021/4/3.
|
|
|
+ */
|
|
|
+public class ExamDetailDto {
|
|
|
+
|
|
|
+ private String id;
|
|
|
+ private String examPrintId;
|
|
|
+ private String examPrintName;
|
|
|
+ private String paperNumber;
|
|
|
+ private String courseCode;
|
|
|
+ private String courseName;
|
|
|
+ private String specialty;
|
|
|
+ private String cardRuleId;
|
|
|
+ private String cardRuleName;
|
|
|
+ private String userId;
|
|
|
+ private String userName;
|
|
|
+ private String createId;
|
|
|
+ private Long createTime;
|
|
|
+ private String relatePaperType;
|
|
|
+ private String exposedPaperType;
|
|
|
+ private String unexposedPaperType;
|
|
|
+ private Integer totalSubjects;
|
|
|
+
|
|
|
+ public String getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(String id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getExamPrintId() {
|
|
|
+ return examPrintId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamPrintId(String examPrintId) {
|
|
|
+ this.examPrintId = examPrintId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getExamPrintName() {
|
|
|
+ return examPrintName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamPrintName(String examPrintName) {
|
|
|
+ this.examPrintName = examPrintName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPaperNumber() {
|
|
|
+ return paperNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPaperNumber(String paperNumber) {
|
|
|
+ this.paperNumber = paperNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCourseCode() {
|
|
|
+ return courseCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseCode(String courseCode) {
|
|
|
+ this.courseCode = courseCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCourseName() {
|
|
|
+ return courseName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseName(String courseName) {
|
|
|
+ this.courseName = courseName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSpecialty() {
|
|
|
+ return specialty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSpecialty(String specialty) {
|
|
|
+ this.specialty = specialty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCardRuleId() {
|
|
|
+ return cardRuleId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCardRuleId(String cardRuleId) {
|
|
|
+ this.cardRuleId = cardRuleId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCardRuleName() {
|
|
|
+ return cardRuleName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCardRuleName(String cardRuleName) {
|
|
|
+ this.cardRuleName = cardRuleName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserId() {
|
|
|
+ return userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserId(String userId) {
|
|
|
+ this.userId = userId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserName() {
|
|
|
+ return userName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserName(String userName) {
|
|
|
+ this.userName = userName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreateId() {
|
|
|
+ return createId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateId(String createId) {
|
|
|
+ this.createId = createId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getCreateTime() {
|
|
|
+ return createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateTime(Long createTime) {
|
|
|
+ this.createTime = createTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRelatePaperType() {
|
|
|
+ return relatePaperType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRelatePaperType(String relatePaperType) {
|
|
|
+ this.relatePaperType = relatePaperType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getExposedPaperType() {
|
|
|
+ return exposedPaperType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExposedPaperType(String exposedPaperType) {
|
|
|
+ this.exposedPaperType = exposedPaperType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUnexposedPaperType() {
|
|
|
+ return unexposedPaperType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUnexposedPaperType(String unexposedPaperType) {
|
|
|
+ this.unexposedPaperType = unexposedPaperType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTotalSubjects() {
|
|
|
+ return totalSubjects;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalSubjects(Integer totalSubjects) {
|
|
|
+ this.totalSubjects = totalSubjects;
|
|
|
+ }
|
|
|
+}
|