燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2024-11-13 2f55cebbad3dea187a5f91d16ec80a9677dab699
src/main/java/com/yssh/entity/Location.java
对比新文件
@@ -0,0 +1,64 @@
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 Location implements Serializable {
   private static final long serialVersionUID = -2728687771987124891L;
   @ApiModelProperty(value = "涓婚敭")
   private int id;
   @ApiModelProperty(value = "鐐逛綅鍚嶇О")
   private String name;
   @ApiModelProperty(value = "鐐逛綅绫诲瀷")
   private String type;
   @ApiModelProperty(value = "鐐逛綅缁忓害")
   private double lon;
   @ApiModelProperty(value = "鐐逛綅绾害")
   private double lat;
   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 String getType() {
      return type;
   }
   public void setType(String type) {
      this.type = type;
   }
   public double getLon() {
      return lon;
   }
   public void setLon(double lon) {
      this.lon = lon;
   }
   public double getLat() {
      return lat;
   }
   public void setLat(double lat) {
      this.lat = lat;
   }
}