燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-07-05 a349a38dbdb92e8cb21f47fe62e4cf1c071f3336
src/main/java/com/yssh/entity/Location.java
@@ -7,28 +7,26 @@
import lombok.Data;
/**
 * 厂区热点点位
 * @author wMeng
 * @ClassName YsshLocation
 * @Description 厂区热点点位
 * @date 2022/10/30 13:16
 * @Version 1.0
 * @version 1.0
 */
@Data
@ApiModel(value = "厂区热点点位",description = "厂区热点点位")
public class Location implements Serializable{
public class Location implements Serializable {
   private static final long serialVersionUID = -2728687771987124891L;
   @ApiModelProperty(value = "主键")
    private int id;
   private int id;
   @ApiModelProperty(value = "点位名称")
    private String name;
   private String name;
   @ApiModelProperty(value = "点位类型")
    private String type;
   private String type;
   @ApiModelProperty(value = "点位经度")
    private float lon;
   private double lon;
   @ApiModelProperty(value = "点位纬度")
    private float lat;
   private double lat;
   public int getId() {
      return id;
@@ -54,19 +52,19 @@
      this.type = type;
   }
   public float getLon() {
   public double getLon() {
      return lon;
   }
   public void setLon(float lon) {
   public void setLon(double lon) {
      this.lon = lon;
   }
   public float getLat() {
   public double getLat() {
      return lat;
   }
   public void setLat(float lat) {
   public void setLat(double lat) {
      this.lat = lat;
   }
}