|
@@ -14,198 +14,210 @@ import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
*/
|
|
|
public class MarkWorkBean implements JsonSerializable {
|
|
|
|
|
|
- private static final long serialVersionUID = -4913141821109915639L;
|
|
|
+ private static final long serialVersionUID = -4913141821109915639L;
|
|
|
|
|
|
- private Long id;
|
|
|
+ private Long id;
|
|
|
|
|
|
- private String name;
|
|
|
+ private String name;
|
|
|
|
|
|
- private Date createdOn;
|
|
|
+ private Date createdOn;
|
|
|
|
|
|
- private List<Long> examIds;
|
|
|
- private ExamType examType;
|
|
|
- private String remark;
|
|
|
+ private List<Long> examIds;
|
|
|
|
|
|
- private Long totalStudentPaper;
|
|
|
+ private ExamType examType;
|
|
|
|
|
|
- private Long markedStudentPaper;
|
|
|
+ private String remark;
|
|
|
|
|
|
- private Long totalCourse;
|
|
|
+ private Long totalStudentPaper;
|
|
|
|
|
|
- private Long markedCourse;
|
|
|
+ private Long markedStudentPaper;
|
|
|
|
|
|
-// private Long totalMarkItem;
|
|
|
+ private Long totalCourse;
|
|
|
|
|
|
- private double progress;
|
|
|
+ private Long markedCourse;
|
|
|
|
|
|
- private int status;
|
|
|
+ // private Long totalMarkItem;
|
|
|
|
|
|
- private Long rootOrgId;
|
|
|
+ private double progress;
|
|
|
|
|
|
- private Long userId;
|
|
|
+ private int status;
|
|
|
|
|
|
- private List<String> examNameAndType;
|
|
|
+ private Long rootOrgId;
|
|
|
|
|
|
- private Boolean isEnd;
|
|
|
+ private Long userId;
|
|
|
|
|
|
- private Long appendTime;
|
|
|
-
|
|
|
- private Boolean orgEnabled;
|
|
|
+ private List<String> examNameAndType;
|
|
|
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
+ private Boolean isEnd;
|
|
|
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
+ private Long appendTime;
|
|
|
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
- }
|
|
|
+ private Boolean orgEnabled;
|
|
|
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
+ private Boolean archived;
|
|
|
|
|
|
- public Date getCreatedOn() {
|
|
|
- return createdOn;
|
|
|
- }
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
|
|
|
- public void setCreatedOn(Date createdOn) {
|
|
|
- this.createdOn = createdOn;
|
|
|
- }
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
|
|
|
- public List<Long> getExamIds() {
|
|
|
- return examIds;
|
|
|
- }
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
|
|
|
- public void setExamIds(List<Long> examIds) {
|
|
|
- this.examIds = examIds;
|
|
|
- }
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
|
|
|
- public String getRemark() {
|
|
|
- return remark;
|
|
|
- }
|
|
|
+ public Date getCreatedOn() {
|
|
|
+ return createdOn;
|
|
|
+ }
|
|
|
|
|
|
- public void setRemark(String remark) {
|
|
|
- this.remark = remark;
|
|
|
- }
|
|
|
+ public void setCreatedOn(Date createdOn) {
|
|
|
+ this.createdOn = createdOn;
|
|
|
+ }
|
|
|
|
|
|
- public Long getTotalStudentPaper() {
|
|
|
- return totalStudentPaper;
|
|
|
- }
|
|
|
+ public List<Long> getExamIds() {
|
|
|
+ return examIds;
|
|
|
+ }
|
|
|
|
|
|
- public void setTotalStudentPaper(Long totalStudentPaper) {
|
|
|
- this.totalStudentPaper = totalStudentPaper;
|
|
|
- }
|
|
|
+ public void setExamIds(List<Long> examIds) {
|
|
|
+ this.examIds = examIds;
|
|
|
+ }
|
|
|
|
|
|
- public Long getMarkedStudentPaper() {
|
|
|
- return markedStudentPaper;
|
|
|
- }
|
|
|
+ public String getRemark() {
|
|
|
+ return remark;
|
|
|
+ }
|
|
|
|
|
|
- public void setMarkedStudentPaper(Long markedStudentPaper) {
|
|
|
- this.markedStudentPaper = markedStudentPaper;
|
|
|
- }
|
|
|
+ public void setRemark(String remark) {
|
|
|
+ this.remark = remark;
|
|
|
+ }
|
|
|
|
|
|
- public Long getTotalCourse() {
|
|
|
- return totalCourse;
|
|
|
- }
|
|
|
+ public Long getTotalStudentPaper() {
|
|
|
+ return totalStudentPaper;
|
|
|
+ }
|
|
|
|
|
|
- public void setTotalCourse(Long totalCourse) {
|
|
|
- this.totalCourse = totalCourse;
|
|
|
- }
|
|
|
+ public void setTotalStudentPaper(Long totalStudentPaper) {
|
|
|
+ this.totalStudentPaper = totalStudentPaper;
|
|
|
+ }
|
|
|
|
|
|
- public Long getMarkedCourse() {
|
|
|
- return markedCourse;
|
|
|
- }
|
|
|
+ public Long getMarkedStudentPaper() {
|
|
|
+ return markedStudentPaper;
|
|
|
+ }
|
|
|
|
|
|
- public void setMarkedCourse(Long markedCourse) {
|
|
|
- this.markedCourse = markedCourse;
|
|
|
- }
|
|
|
+ public void setMarkedStudentPaper(Long markedStudentPaper) {
|
|
|
+ this.markedStudentPaper = markedStudentPaper;
|
|
|
+ }
|
|
|
|
|
|
-// public Long getTotalMarkItem() {
|
|
|
-// return totalMarkItem;
|
|
|
-// }
|
|
|
-//
|
|
|
-// public void setTotalMarkItem(Long totalMarkItem) {
|
|
|
-// this.totalMarkItem = totalMarkItem;
|
|
|
-// }
|
|
|
+ public Long getTotalCourse() {
|
|
|
+ return totalCourse;
|
|
|
+ }
|
|
|
|
|
|
- public double getProgress() {
|
|
|
- return progress;
|
|
|
- }
|
|
|
+ public void setTotalCourse(Long totalCourse) {
|
|
|
+ this.totalCourse = totalCourse;
|
|
|
+ }
|
|
|
|
|
|
- public void setProgress(double progress) {
|
|
|
- this.progress = progress;
|
|
|
- }
|
|
|
+ public Long getMarkedCourse() {
|
|
|
+ return markedCourse;
|
|
|
+ }
|
|
|
|
|
|
- public int getStatus() {
|
|
|
- return status;
|
|
|
- }
|
|
|
+ public void setMarkedCourse(Long markedCourse) {
|
|
|
+ this.markedCourse = markedCourse;
|
|
|
+ }
|
|
|
|
|
|
- public void setStatus(int status) {
|
|
|
- this.status = status;
|
|
|
- }
|
|
|
+ // public Long getTotalMarkItem() {
|
|
|
+ // return totalMarkItem;
|
|
|
+ // }
|
|
|
+ //
|
|
|
+ // public void setTotalMarkItem(Long totalMarkItem) {
|
|
|
+ // this.totalMarkItem = totalMarkItem;
|
|
|
+ // }
|
|
|
|
|
|
- public Long getRootOrgId() {
|
|
|
- return rootOrgId;
|
|
|
- }
|
|
|
+ public double getProgress() {
|
|
|
+ return progress;
|
|
|
+ }
|
|
|
|
|
|
- public void setRootOrgId(Long rootOrgId) {
|
|
|
- this.rootOrgId = rootOrgId;
|
|
|
- }
|
|
|
+ public void setProgress(double progress) {
|
|
|
+ this.progress = progress;
|
|
|
+ }
|
|
|
|
|
|
- public Long getUserId() {
|
|
|
- return userId;
|
|
|
- }
|
|
|
+ public int getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
|
|
|
- public void setUserId(Long userId) {
|
|
|
- this.userId = userId;
|
|
|
- }
|
|
|
+ public void setStatus(int status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
|
|
|
- public List<String> getExamNameAndType() {
|
|
|
- return examNameAndType;
|
|
|
- }
|
|
|
+ public Long getRootOrgId() {
|
|
|
+ return rootOrgId;
|
|
|
+ }
|
|
|
|
|
|
- public void setExamNameAndType(List<String> examNameAndType) {
|
|
|
- this.examNameAndType = examNameAndType;
|
|
|
- }
|
|
|
+ public void setRootOrgId(Long rootOrgId) {
|
|
|
+ this.rootOrgId = rootOrgId;
|
|
|
+ }
|
|
|
|
|
|
- public MarkWorkBean() {
|
|
|
+ public Long getUserId() {
|
|
|
+ return userId;
|
|
|
+ }
|
|
|
|
|
|
- }
|
|
|
+ public void setUserId(Long userId) {
|
|
|
+ this.userId = userId;
|
|
|
+ }
|
|
|
|
|
|
- public Boolean getIsEnd() {
|
|
|
- return isEnd;
|
|
|
- }
|
|
|
+ public List<String> getExamNameAndType() {
|
|
|
+ return examNameAndType;
|
|
|
+ }
|
|
|
|
|
|
- public void setIsEnd(Boolean isEnd) {
|
|
|
- this.isEnd = isEnd;
|
|
|
- }
|
|
|
+ public void setExamNameAndType(List<String> examNameAndType) {
|
|
|
+ this.examNameAndType = examNameAndType;
|
|
|
+ }
|
|
|
|
|
|
- public Long getAppendTime() {
|
|
|
- return appendTime;
|
|
|
- }
|
|
|
+ public MarkWorkBean() {
|
|
|
|
|
|
- public void setAppendTime(Long appendTime) {
|
|
|
- this.appendTime = appendTime;
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- public ExamType getExamType() {
|
|
|
- return examType;
|
|
|
- }
|
|
|
+ public Boolean getIsEnd() {
|
|
|
+ return isEnd;
|
|
|
+ }
|
|
|
|
|
|
- public void setExamType(ExamType examType) {
|
|
|
- this.examType = examType;
|
|
|
- }
|
|
|
+ public void setIsEnd(Boolean isEnd) {
|
|
|
+ this.isEnd = isEnd;
|
|
|
+ }
|
|
|
|
|
|
- public Boolean getOrgEnabled() {
|
|
|
- return orgEnabled;
|
|
|
- }
|
|
|
+ public Long getAppendTime() {
|
|
|
+ return appendTime;
|
|
|
+ }
|
|
|
|
|
|
- public void setOrgEnabled(Boolean orgEnabled) {
|
|
|
- this.orgEnabled = orgEnabled;
|
|
|
- }
|
|
|
+ public void setAppendTime(Long appendTime) {
|
|
|
+ this.appendTime = appendTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public ExamType getExamType() {
|
|
|
+ return examType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamType(ExamType examType) {
|
|
|
+ this.examType = examType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getOrgEnabled() {
|
|
|
+ return orgEnabled;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrgEnabled(Boolean orgEnabled) {
|
|
|
+ this.orgEnabled = orgEnabled;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getArchived() {
|
|
|
+ return archived;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setArchived(Boolean archived) {
|
|
|
+ this.archived = archived;
|
|
|
+ }
|
|
|
|
|
|
}
|