[add] 接受事故任务调起自动驾驶
This commit is contained in:
@@ -16,7 +16,9 @@ public class NoticeTrafficStyleInfo extends BaseData {
|
||||
private long dataHandleTime;//事故处理时间
|
||||
private String operaStatus;//事故处理状态
|
||||
private String troubleReasonName;//事故原因
|
||||
private String uploadAddress;//事故地点
|
||||
private String uploadAddress;//事故地点名称
|
||||
private double lat;//纬度
|
||||
private double lon;//经度
|
||||
|
||||
public String getInfoId() {
|
||||
return infoId;
|
||||
@@ -74,6 +76,22 @@ public class NoticeTrafficStyleInfo extends BaseData {
|
||||
this.uploadAddress = uploadAddress;
|
||||
}
|
||||
|
||||
public double getLat() {
|
||||
return lat;
|
||||
}
|
||||
|
||||
public void setLat(double lat) {
|
||||
this.lat = lat;
|
||||
}
|
||||
|
||||
public double getLon() {
|
||||
return lon;
|
||||
}
|
||||
|
||||
public void setLon(double lon) {
|
||||
this.lon = lon;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "NoticeTrafficStyleInfo{" +
|
||||
@@ -84,6 +102,8 @@ public class NoticeTrafficStyleInfo extends BaseData {
|
||||
", operaStatus='" + operaStatus + '\'' +
|
||||
", troubleReasonName='" + troubleReasonName + '\'' +
|
||||
", uploadAddress='" + uploadAddress + '\'' +
|
||||
", lat=" + lat +
|
||||
", lon=" + lon +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user