|
@@ -1,28 +1,27 @@
|
|
|
package cn.com.qmth.examcloud.core.oe.admin.api.response;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.BaseResponse;
|
|
|
import cn.com.qmth.examcloud.core.oe.admin.api.bean.ScoreDataBean;
|
|
|
-import com.sun.org.apache.xpath.internal.operations.Bool;
|
|
|
-
|
|
|
-import java.util.List;
|
|
|
|
|
|
public class GetFinalScoreDataResp extends BaseResponse {
|
|
|
|
|
|
private static final long serialVersionUID = 7643805576514948677L;
|
|
|
|
|
|
- //是否缺考
|
|
|
+ // 是否缺考
|
|
|
private Boolean isAbsent;
|
|
|
|
|
|
- //是否违纪
|
|
|
+ // 是否违纪
|
|
|
private Boolean isIllegality;
|
|
|
|
|
|
- //是否已审
|
|
|
+ // 是否已审
|
|
|
private Boolean isAudit;
|
|
|
|
|
|
- //最终成绩对象(缺考/违纪/未审核 时,此对象为null)
|
|
|
+ // 最终成绩对象(缺考/违纪/未审核 时,此对象为null)
|
|
|
private ScoreDataBean scoreDataBean;
|
|
|
|
|
|
- //所有的考试分数集合(present==false时有值)
|
|
|
+ // 所有的考试分数集合
|
|
|
private List<ScoreDataBean> allScoreDataBeanList;
|
|
|
|
|
|
public Boolean getAbsent() {
|