|
@@ -2,24 +2,51 @@ package cn.com.qmth.examcloud.core.oe.admin.api.response;
|
|
|
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.BaseResponse;
|
|
import cn.com.qmth.examcloud.api.commons.exchange.BaseResponse;
|
|
import cn.com.qmth.examcloud.core.oe.admin.api.bean.ScoreDataBean;
|
|
import cn.com.qmth.examcloud.core.oe.admin.api.bean.ScoreDataBean;
|
|
|
|
+import com.sun.org.apache.xpath.internal.operations.Bool;
|
|
|
|
+
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
public class GetFinalScoreDataResp extends BaseResponse {
|
|
public class GetFinalScoreDataResp extends BaseResponse {
|
|
|
|
|
|
private static final long serialVersionUID = 7643805576514948677L;
|
|
private static final long serialVersionUID = 7643805576514948677L;
|
|
|
|
|
|
- private Boolean present;
|
|
|
|
|
|
+ //是否缺考
|
|
|
|
+ private Boolean isAbsent;
|
|
|
|
+
|
|
|
|
+ //是否违纪
|
|
|
|
+ private Boolean isIllegality;
|
|
|
|
|
|
|
|
+ //是否已审
|
|
|
|
+ private Boolean isAudit;
|
|
|
|
+
|
|
|
|
+ //最终成绩对象(缺考/违纪/未审核 时,此对象为null)
|
|
private ScoreDataBean scoreDataBean;
|
|
private ScoreDataBean scoreDataBean;
|
|
|
|
+
|
|
//所有的考试分数集合(present==false时有值)
|
|
//所有的考试分数集合(present==false时有值)
|
|
private List<ScoreDataBean> allScoreDataBeanList;
|
|
private List<ScoreDataBean> allScoreDataBeanList;
|
|
|
|
|
|
- public Boolean getPresent() {
|
|
|
|
- return present;
|
|
|
|
|
|
+ public Boolean getAbsent() {
|
|
|
|
+ return isAbsent;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setPresent(Boolean present) {
|
|
|
|
- this.present = present;
|
|
|
|
|
|
+ public void setAbsent(Boolean absent) {
|
|
|
|
+ isAbsent = absent;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Boolean getIllegality() {
|
|
|
|
+ return isIllegality;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setIllegality(Boolean illegality) {
|
|
|
|
+ isIllegality = illegality;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Boolean getAudit() {
|
|
|
|
+ return isAudit;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAudit(Boolean audit) {
|
|
|
|
+ isAudit = audit;
|
|
}
|
|
}
|
|
|
|
|
|
public ScoreDataBean getScoreDataBean() {
|
|
public ScoreDataBean getScoreDataBean() {
|
|
@@ -37,4 +64,5 @@ public class GetFinalScoreDataResp extends BaseResponse {
|
|
public void setAllScoreDataBeanList(List<ScoreDataBean> allScoreDataBeanList) {
|
|
public void setAllScoreDataBeanList(List<ScoreDataBean> allScoreDataBeanList) {
|
|
this.allScoreDataBeanList = allScoreDataBeanList;
|
|
this.allScoreDataBeanList = allScoreDataBeanList;
|
|
}
|
|
}
|
|
|
|
+
|
|
}
|
|
}
|