package com.stylefeng.guns.modular.shunfeng.model.vo;
|
|
/**
|
* 实时线路--推荐线路--线路
|
*/
|
public class LineRecommendedVo {
|
/**
|
* 班次id
|
*/
|
private Integer shiftId;
|
/**
|
* 线路id
|
*/
|
private Integer lineId;
|
/**
|
* 车辆id
|
*/
|
private Integer carId;
|
/**
|
* 起点站
|
*/
|
private String start;
|
/**
|
* 终点站
|
*/
|
private String end;
|
/**
|
* 车牌
|
*/
|
private String carNum;
|
/**
|
* 距离
|
*/
|
private Double distance=0d;
|
|
/**
|
* 车型
|
*/
|
private String carModel;
|
/**
|
* 车辆品牌
|
*/
|
private String carType;
|
/**
|
* 当前选择的名称
|
*/
|
private String siteName;
|
/**
|
* 当前选择的站点
|
*/
|
private Integer siteId;
|
/**
|
* 终点id
|
*/
|
private Integer endId;
|
/**
|
* 下一个站
|
*/
|
private String nextName;
|
|
private Integer nextLon;
|
|
private Double nextLat;
|
|
public Integer getLineId() {
|
return lineId;
|
}
|
|
public void setLineId(Integer lineId) {
|
this.lineId = lineId;
|
}
|
|
public String getStart() {
|
return start;
|
}
|
|
public void setStart(String start) {
|
this.start = start;
|
}
|
|
public String getEnd() {
|
return end;
|
}
|
|
public void setEnd(String end) {
|
this.end = end;
|
}
|
|
public String getCarNum() {
|
return carNum;
|
}
|
|
public void setCarNum(String carNum) {
|
this.carNum = carNum;
|
}
|
|
public Double getDistance() {
|
return distance;
|
}
|
|
public void setDistance(Double distance) {
|
this.distance = distance;
|
}
|
|
public Integer getCarId() {
|
return carId;
|
}
|
|
public void setCarId(Integer carId) {
|
this.carId = carId;
|
}
|
|
public String getSiteName() {
|
return siteName;
|
}
|
|
public void setSiteName(String siteName) {
|
this.siteName = siteName;
|
}
|
|
public String getCarModel() {
|
return carModel;
|
}
|
|
public void setCarModel(String carModel) {
|
this.carModel = carModel;
|
}
|
|
public String getCarType() {
|
return carType;
|
}
|
|
public void setCarType(String carType) {
|
this.carType = carType;
|
}
|
|
public Integer getShiftId() {
|
return shiftId;
|
}
|
|
public void setShiftId(Integer shiftId) {
|
this.shiftId = shiftId;
|
}
|
|
public Integer getSiteId() {
|
return siteId;
|
}
|
|
public void setSiteId(Integer siteId) {
|
this.siteId = siteId;
|
}
|
|
public Integer getEndId() {
|
return endId;
|
}
|
|
public void setEndId(Integer endId) {
|
this.endId = endId;
|
}
|
|
public String getNextName() {
|
return nextName;
|
}
|
|
public void setNextName(String nextName) {
|
this.nextName = nextName;
|
}
|
|
public Integer getNextLon() {
|
return nextLon;
|
}
|
|
public void setNextLon(Integer nextLon) {
|
this.nextLon = nextLon;
|
}
|
|
public Double getNextLat() {
|
return nextLat;
|
}
|
|
public void setNextLat(Double nextLat) {
|
this.nextLat = nextLat;
|
}
|
}
|