¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.yssh.entity; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | @ApiModel(value = "ææ¾ç¹ç¹ä½",description = "ææ¾ç¹ç¹ä½") |
| | | public class Emission implements Serializable{ |
| | | |
| | | private static final long serialVersionUID = -6398611940241117240L; |
| | | |
| | | @ApiModelProperty(value = "主é®") |
| | | private int id; |
| | | @ApiModelProperty(value = "ç¹ä½åç§°") |
| | | private String name; |
| | | @ApiModelProperty(value = "ç»åº¦") |
| | | private double lon; |
| | | @ApiModelProperty(value = "纬度") |
| | | private float lat; |
| | | @ApiModelProperty(value = "æ°å¼") |
| | | private String value; |
| | | @ApiModelProperty(value = "æ¶é´") |
| | | private String time; |
| | | @ApiModelProperty(value = "ç¶æå¼") |
| | | private int property; |
| | | |
| | | public int getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(int id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getName() { |
| | | return name; |
| | | } |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | public double getLon() { |
| | | return lon; |
| | | } |
| | | |
| | | public void setLon(double lon) { |
| | | this.lon = lon; |
| | | } |
| | | |
| | | public float getLat() { |
| | | return lat; |
| | | } |
| | | |
| | | public void setLat(float lat) { |
| | | this.lat = lat; |
| | | } |
| | | |
| | | public String getValue() { |
| | | return value; |
| | | } |
| | | |
| | | public void setValue(String value) { |
| | | this.value = value; |
| | | } |
| | | |
| | | public String getTime() { |
| | | return time; |
| | | } |
| | | |
| | | public void setTime(String time) { |
| | | this.time = time; |
| | | } |
| | | |
| | | public int getProperty() { |
| | | return property; |
| | | } |
| | | |
| | | public void setProperty(int property) { |
| | | this.property = property; |
| | | } |
| | | } |