|
@@ -7,6 +7,8 @@
|
|
|
|
|
|
package cn.com.qmth.examcloud.core.print.service.bean.coursestatistic;
|
|
package cn.com.qmth.examcloud.core.print.service.bean.coursestatistic;
|
|
|
|
|
|
|
|
+import cn.com.qmth.examcloud.core.print.enums.PaperBindingStatus;
|
|
|
|
+
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -17,6 +19,7 @@ import java.io.Serializable;
|
|
*/
|
|
*/
|
|
public class CourseStatisticInfo implements Serializable {
|
|
public class CourseStatisticInfo implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
+ private Long id;
|
|
/**
|
|
/**
|
|
* 学校机构ID
|
|
* 学校机构ID
|
|
*/
|
|
*/
|
|
@@ -50,9 +53,10 @@ public class CourseStatisticInfo implements Serializable {
|
|
*/
|
|
*/
|
|
private String paperType;
|
|
private String paperType;
|
|
/**
|
|
/**
|
|
- * 试卷状态
|
|
|
|
|
|
+ * @See PaperBindingStatus.java
|
|
|
|
+ * 试卷绑定状态
|
|
*/
|
|
*/
|
|
- private String paperStatus;
|
|
|
|
|
|
+ private Integer bindingStatus;
|
|
/**
|
|
/**
|
|
* 试卷文件URL
|
|
* 试卷文件URL
|
|
*/
|
|
*/
|
|
@@ -70,6 +74,18 @@ public class CourseStatisticInfo implements Serializable {
|
|
*/
|
|
*/
|
|
private Integer totalStudent;
|
|
private Integer totalStudent;
|
|
|
|
|
|
|
|
+ public String getBindingStatusName() {
|
|
|
|
+ return PaperBindingStatus.getNameByIndex(bindingStatus);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getId() {
|
|
|
|
+ return id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setId(Long id) {
|
|
|
|
+ this.id = id;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Long getOrgId() {
|
|
public Long getOrgId() {
|
|
return orgId;
|
|
return orgId;
|
|
}
|
|
}
|
|
@@ -134,12 +150,12 @@ public class CourseStatisticInfo implements Serializable {
|
|
this.paperType = paperType;
|
|
this.paperType = paperType;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getPaperStatus() {
|
|
|
|
- return paperStatus;
|
|
|
|
|
|
+ public Integer getBindingStatus() {
|
|
|
|
+ return bindingStatus;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setPaperStatus(String paperStatus) {
|
|
|
|
- this.paperStatus = paperStatus;
|
|
|
|
|
|
+ public void setBindingStatus(Integer bindingStatus) {
|
|
|
|
+ this.bindingStatus = bindingStatus;
|
|
}
|
|
}
|
|
|
|
|
|
public String getPaperFileUrl() {
|
|
public String getPaperFileUrl() {
|