package com.yssh.entity; import java.io.Serializable; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import com.github.biyanwen.annotation.CsvProperty; @Data @NoArgsConstructor @AllArgsConstructor public class SuYuan implements Serializable { private static final long serialVersionUID = 2004641202487367361L; private String id; @CsvProperty(index = 0) private Integer x; @CsvProperty(index = 1) private Integer y; @CsvProperty(index = 2) private Integer z; @CsvProperty(index = 3) private Double u; @CsvProperty(index = 4) private Double v; @CsvProperty(index = 5) private Double w; @CsvProperty(index = 6) private Double c; /*private Double lon; private Double lat; private Date time;*/ public String getId() { return id; } public void setId(String id) { this.id = id; } 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 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; } }