燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2024-12-02 453e3471e94b91169beec1e258a06a132d927011
src/main/java/com/yssh/entity/Temporary.java
@@ -11,7 +11,7 @@
@NoArgsConstructor
@AllArgsConstructor
public class Temporary implements Serializable{
public class Temporary implements Serializable {
   private static final long serialVersionUID = 8801687493177033295L;
   private Integer x;
@@ -30,54 +30,76 @@
   private Double w;
   @CsvProperty(index = 6)
   private Double c;
   public Integer getX() {
      return x;
   }
   public void setX(Integer x) {
      this.x = x;
   }
   public Integer getY() {
      return y;
   }
   public void setY(Integer y) {
      this.y = y;
   }
   public Integer getZ() {
      return z;
   }
   public void setZ(Integer z) {
      this.z = z;
   }
   public double getLon() {
      return CalculateUtils.getLon(x, y);
   }
   public double getLat() {
      return CalculateUtils.getLat(x, y);
   }
   public Double getU() {
      return u;
   }
   public void setU(Double u) {
      this.u = u;
   }
   public Double getV() {
      return v;
   }
   public void setV(Double v) {
      this.v = v;
   }
   public Double getW() {
      return w;
   }
   public void setW(Double w) {
      this.w = w;
   }
   public Double getC() {
      return c;
   }
   public void setC(Double c) {
      this.c = c;
   }
   public void setLon(Double lon) {
      this.lon = lon;
   }
   public void setLat(Double lat) {
      this.lat = lat;
   }
}