管道基础大数据平台系统开发-【后端】-Server
12
13693261870
2022-11-21 07a68b8d93aa059968a9709f2c81e6625338032c
src/main/java/com/lf/server/entity/data/MetaEntity.java
@@ -22,7 +22,7 @@
    private String type;
    private long sizes;
    private double sizes;
    private String cs;
@@ -31,6 +31,8 @@
    private String resolution;
    private Timestamp gather;
    private String batch;
    private String descr;
@@ -42,7 +44,7 @@
    private Timestamp updateTime;
    private String geo;
    private String geom;
    public MetaEntity() {
    }
@@ -95,11 +97,11 @@
        this.type = type;
    }
    public long getSizes() {
    public double getSizes() {
        return sizes;
    }
    public void setSizes(long sizes) {
    public void setSizes(double sizes) {
        this.sizes = sizes;
    }
@@ -133,6 +135,14 @@
    public void setGather(Timestamp gather) {
        this.gather = gather;
    }
    public String getBatch() {
        return batch;
    }
    public void setBatch(String batch) {
        this.batch = batch;
    }
    public String getDescr() {
@@ -175,11 +185,11 @@
        this.updateTime = updateTime;
    }
    public String getGeo() {
        return geo;
    public String getGeom() {
        return geom;
    }
    public void setGeo(String geo) {
        this.geo = geo;
    public void setGeom(String geom) {
        this.geom = geom;
    }
}