Browse Source

设施任务数

xiatian 3 years ago
parent
commit
af32aa5418

+ 12 - 1
examcloud-core-marking-api/src/main/java/cn/com/qmth/examcloud/marking/api/bean/MarkTaskBean.java

@@ -4,7 +4,6 @@ import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
 
 /**
  * @ClassName MarkTaskBean
- * @Description TODO
  * @Author nikang
  * @Date 2018/11/27 17:03
  * @Version 3.0
@@ -44,6 +43,8 @@ public class MarkTaskBean implements JsonSerializable {
     private Double stdDev;
 
     private Long rootOrgId;
+    
+    private Boolean exceedLimit;
 
     public MarkTaskBean() {
     }
@@ -239,4 +240,14 @@ public class MarkTaskBean implements JsonSerializable {
     public void setId(Long id) {
         this.id = id;
     }
+
+	public Boolean getExceedLimit() {
+		return exceedLimit;
+	}
+
+	public void setExceedLimit(Boolean exceedLimit) {
+		this.exceedLimit = exceedLimit;
+	}
+    
+    
 }

+ 26 - 7
examcloud-core-marking-api/src/main/java/cn/com/qmth/examcloud/marking/api/response/GetStudentPaperResp.java

@@ -12,13 +12,32 @@ import cn.com.qmth.examcloud.marking.api.bean.StudentPaperBean;
  */
 public class GetStudentPaperResp extends BaseResponse {
     private static final long serialVersionUID = 3983154999704945517L;
+    
+	
+    private String resultCode;
+	private String failMsg;
     private StudentPaperBean studentPaperBean;
+    
+    
+    
+	public String getResultCode() {
+		return resultCode;
+	}
+	public void setResultCode(String resultCode) {
+		this.resultCode = resultCode;
+	}
+	public String getFailMsg() {
+		return failMsg;
+	}
+	public void setFailMsg(String failMsg) {
+		this.failMsg = failMsg;
+	}
+	public StudentPaperBean getStudentPaperBean() {
+		return studentPaperBean;
+	}
+	public void setStudentPaperBean(StudentPaperBean studentPaperBean) {
+		this.studentPaperBean = studentPaperBean;
+	}
 
-    public StudentPaperBean getStudentPaperBean() {
-        return studentPaperBean;
-    }
-
-    public void setStudentPaperBean(StudentPaperBean studentPaperBean) {
-        this.studentPaperBean = studentPaperBean;
-    }
+    
 }