|
@@ -0,0 +1,94 @@
|
|
|
+package cn.com.qmth.examcloud.core.reports.api.request;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
+
|
|
|
+public class SaveExamDataReq extends BaseRequest {
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = -2179530067167922973L;
|
|
|
+
|
|
|
+ private Long rootOrgId;
|
|
|
+
|
|
|
+ private Long examId;
|
|
|
+
|
|
|
+ private String examName;
|
|
|
+
|
|
|
+ private String examType;
|
|
|
+
|
|
|
+ private Date startTime;
|
|
|
+
|
|
|
+ private Date endTime;
|
|
|
+
|
|
|
+ private Integer planCount;
|
|
|
+
|
|
|
+ private Integer completeCount;
|
|
|
+
|
|
|
+ public Long getRootOrgId() {
|
|
|
+ return rootOrgId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRootOrgId(Long rootOrgId) {
|
|
|
+ this.rootOrgId = rootOrgId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getExamId() {
|
|
|
+ return examId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamId(Long examId) {
|
|
|
+ this.examId = examId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getExamName() {
|
|
|
+ return examName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamName(String examName) {
|
|
|
+ this.examName = examName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getExamType() {
|
|
|
+ return examType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamType(String examType) {
|
|
|
+ this.examType = examType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getStartTime() {
|
|
|
+ return startTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStartTime(Date startTime) {
|
|
|
+ this.startTime = startTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getEndTime() {
|
|
|
+ return endTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEndTime(Date endTime) {
|
|
|
+ this.endTime = endTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPlanCount() {
|
|
|
+ return planCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlanCount(Integer planCount) {
|
|
|
+ this.planCount = planCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCompleteCount() {
|
|
|
+ return completeCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCompleteCount(Integer completeCount) {
|
|
|
+ this.completeCount = completeCount;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|