xiatian 6 年之前
父节点
当前提交
4e04403519

+ 11 - 2
examcloud-core-marking-api/src/main/java/cn/com/qmth/examcloud/marking/api/response/GetMarkersByWorkIdsResp.java

@@ -10,8 +10,9 @@ public class GetMarkersByWorkIdsResp extends BaseResponse {
 	 * 
 	 */
 	private static final long serialVersionUID = -2532940482188609289L;
-	
-	//有小到大排序
+
+	private Long nextId;
+	// 有小到大排序
 	private List<Long> markers;
 
 	public List<Long> getMarkers() {
@@ -22,4 +23,12 @@ public class GetMarkersByWorkIdsResp extends BaseResponse {
 		this.markers = markers;
 	}
 
+	public Long getNextId() {
+		return nextId;
+	}
+
+	public void setNextId(Long nextId) {
+		this.nextId = nextId;
+	}
+
 }