添加参数

This commit is contained in:
孙小云 2026-03-13 10:52:19 +08:00
parent 1290d6a524
commit aae9c3537e
1 changed files with 6 additions and 6 deletions

View File

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