添加参数
This commit is contained in:
parent
1290d6a524
commit
aae9c3537e
|
|
@ -32,8 +32,8 @@ public class TaskStatQueryVO {
|
||||||
/** 航线ID列表 */
|
/** 航线ID列表 */
|
||||||
private List<Long> routeIdList;
|
private List<Long> routeIdList;
|
||||||
|
|
||||||
/** 无人机ID */
|
/** 无人机ID列表 */
|
||||||
private String uavId;
|
private List<String> uavIdList;
|
||||||
|
|
||||||
public Integer getYear() {
|
public Integer getYear() {
|
||||||
return year;
|
return year;
|
||||||
|
|
@ -83,11 +83,11 @@ public class TaskStatQueryVO {
|
||||||
this.routeIdList = routeIdList;
|
this.routeIdList = routeIdList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getUavId() {
|
public List<String> getUavIdList() {
|
||||||
return uavId;
|
return uavIdList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setUavId(String uavId) {
|
public void setUavIdList(List<String> uavIdList) {
|
||||||
this.uavId = uavId;
|
this.uavIdList = uavIdList;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue