| | |
| | | public WarningVo() { |
| | | } |
| | | |
| | | public WarningVo(String locationName, String suYuanId, double lon, double lat, double value) { |
| | | public WarningVo(String locationName, String suYuanId, double lon, double lat, double value, String time) { |
| | | this.locationName = locationName; |
| | | this.suYuanId = suYuanId; |
| | | this.lon = lon; |
| | | this.lat = lat; |
| | | this.value = value; |
| | | this.time = time; |
| | | } |
| | | |
| | | private static final long serialVersionUID = 3440478664982471286L; |
| | |
| | | private double lat; |
| | | @ApiModelProperty(value = "数值") |
| | | private double value; |
| | | @ApiModelProperty(value = "时间") |
| | | private String time; |
| | | public String getLocationName() { |
| | | return locationName; |
| | | } |
| | |
| | | public void setLat(double lat) { |
| | | this.lat = lat; |
| | | } |
| | | |
| | | public String getTime() { |
| | | return time; |
| | | } |
| | | |
| | | public void setTime(String time) { |
| | | this.time = time; |
| | | } |
| | | } |