添加航线路径

This commit is contained in:
孙小云 2026-03-07 10:37:38 +08:00
parent 3e1e4d5e95
commit e6dc3a2936
2 changed files with 17 additions and 0 deletions

View File

@ -60,6 +60,9 @@ public class TaskDTO {
/** 备注 */
private String remark;
/** 航线文件URL */
private String routeUrl;
// Getters and Setters
public Long getId() {
return id;
@ -181,6 +184,14 @@ public class TaskDTO {
this.remark = remark;
}
public String getRouteUrl() {
return routeUrl;
}
public void setRouteUrl(String routeUrl) {
this.routeUrl = routeUrl;
}
@Override
public String toString() {
return "TaskDTO{" +
@ -198,6 +209,7 @@ public class TaskDTO {
", actualStartTime=" + actualStartTime +
", actualEndTime=" + actualEndTime +
", description='" + description + '\'' +
", routeUrl='" + routeUrl + '\'' +
'}';
}
}

View File

@ -84,4 +84,9 @@ public class TaskPlanDTO {
*/
private Integer duration;
/**
* 航线文件URL
*/
private String routeUrl;
}