opt
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
package com.mogo.module.common.entity;
|
||||
|
||||
/**
|
||||
* 通过AI云下发的红绿灯状态
|
||||
*
|
||||
* @author tongchenfei
|
||||
*/
|
||||
public class AITrafficLightEntity {
|
||||
private int type;
|
||||
|
||||
private double lat;
|
||||
private double lon;
|
||||
private long systemTime;
|
||||
/**红绿灯状态 1红 2绿 3黄*/
|
||||
private Integer lightStatus;//
|
||||
/**红绿灯剩余时间 读秒*/
|
||||
private Integer lightLeftTime;
|
||||
private double distance ;//距离
|
||||
|
||||
public int getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(int type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
public long getSystemTime() {
|
||||
return systemTime;
|
||||
}
|
||||
|
||||
public void setSystemTime(long systemTime) {
|
||||
this.systemTime = systemTime;
|
||||
}
|
||||
|
||||
public Integer getLightStatus() {
|
||||
return lightStatus;
|
||||
}
|
||||
|
||||
public void setLightStatus(Integer lightStatus) {
|
||||
this.lightStatus = lightStatus;
|
||||
}
|
||||
|
||||
public Integer getLightLeftTime() {
|
||||
return lightLeftTime;
|
||||
}
|
||||
|
||||
public void setLightLeftTime(Integer lightLeftTime) {
|
||||
this.lightLeftTime = lightLeftTime;
|
||||
}
|
||||
|
||||
public double getDistance() {
|
||||
return distance;
|
||||
}
|
||||
|
||||
public void setDistance(double distance) {
|
||||
this.distance = distance;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user