添加航线路径
This commit is contained in:
parent
3e1e4d5e95
commit
e6dc3a2936
|
|
@ -60,6 +60,9 @@ public class TaskDTO {
|
||||||
/** 备注 */
|
/** 备注 */
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
|
/** 航线文件URL */
|
||||||
|
private String routeUrl;
|
||||||
|
|
||||||
// Getters and Setters
|
// Getters and Setters
|
||||||
public Long getId() {
|
public Long getId() {
|
||||||
return id;
|
return id;
|
||||||
|
|
@ -181,6 +184,14 @@ public class TaskDTO {
|
||||||
this.remark = remark;
|
this.remark = remark;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getRouteUrl() {
|
||||||
|
return routeUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRouteUrl(String routeUrl) {
|
||||||
|
this.routeUrl = routeUrl;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "TaskDTO{" +
|
return "TaskDTO{" +
|
||||||
|
|
@ -198,6 +209,7 @@ public class TaskDTO {
|
||||||
", actualStartTime=" + actualStartTime +
|
", actualStartTime=" + actualStartTime +
|
||||||
", actualEndTime=" + actualEndTime +
|
", actualEndTime=" + actualEndTime +
|
||||||
", description='" + description + '\'' +
|
", description='" + description + '\'' +
|
||||||
|
", routeUrl='" + routeUrl + '\'' +
|
||||||
'}';
|
'}';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -84,4 +84,9 @@ public class TaskPlanDTO {
|
||||||
*/
|
*/
|
||||||
private Integer duration;
|
private Integer duration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 航线文件URL
|
||||||
|
*/
|
||||||
|
private String routeUrl;
|
||||||
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue