|
@@ -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;
|
|
|
+ }
|
|
|
+
|
|
|
}
|