修改字段类型

This commit is contained in:
孙小云 2026-03-09 09:50:56 +08:00
parent e6dc3a2936
commit 6cd6cb7167
2 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ public class TaskDTO {
private Long routeId; private Long routeId;
/** 无人机ID */ /** 无人机ID */
private Long uavId; private String uavId;
/** 状态 */ /** 状态 */
private StatusEnum status; private StatusEnum status;
@ -120,11 +120,11 @@ public class TaskDTO {
this.routeId = routeId; this.routeId = routeId;
} }
public Long getUavId() { public String getUavId() {
return uavId; return uavId;
} }
public void setUavId(Long uavId) { public void setUavId(String uavId) {
this.uavId = uavId; this.uavId = uavId;
} }

View File

@ -67,7 +67,7 @@ public class TaskPlanDTO {
/** /**
* 无人机ID * 无人机ID
*/ */
private Long uavId; private String uavId;
/** /**
* 状态 * 状态