|
@@ -2,6 +2,7 @@ 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 java.util.List;
|
|
|
|
|
|
public class GetFinalScoreDataResp extends BaseResponse {
|
|
public class GetFinalScoreDataResp extends BaseResponse {
|
|
|
|
|
|
@@ -10,6 +11,8 @@ public class GetFinalScoreDataResp extends BaseResponse {
|
|
private Boolean present;
|
|
private Boolean present;
|
|
|
|
|
|
private ScoreDataBean scoreDataBean;
|
|
private ScoreDataBean scoreDataBean;
|
|
|
|
+ //所有的考试分数集合(present==false时有值)
|
|
|
|
+ private List<ScoreDataBean> allScoreDataBeanList;
|
|
|
|
|
|
public Boolean getPresent() {
|
|
public Boolean getPresent() {
|
|
return present;
|
|
return present;
|
|
@@ -27,4 +30,11 @@ public class GetFinalScoreDataResp extends BaseResponse {
|
|
this.scoreDataBean = scoreDataBean;
|
|
this.scoreDataBean = scoreDataBean;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public List<ScoreDataBean> getAllScoreDataBeanList() {
|
|
|
|
+ return allScoreDataBeanList;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAllScoreDataBeanList(List<ScoreDataBean> allScoreDataBeanList) {
|
|
|
|
+ this.allScoreDataBeanList = allScoreDataBeanList;
|
|
|
|
+ }
|
|
}
|
|
}
|