管道基础大数据平台系统开发-【后端】-Server
xing
2023-02-22 56c25bcb0dc03aae78aba23f32ebbf548b866332
src/main/java/com/lf/server/entity/data/DownloadEntity.java
@@ -16,6 +16,8 @@
    private int type;
    private double sizes;
    private int depid;
    private int dcount;
@@ -36,9 +38,11 @@
    private Timestamp downloadTime;
    private String geo;
    private String geom;
    private String bak;
    private String createName;
    public DownloadEntity() {
    }
@@ -65,6 +69,14 @@
    public void setType(int type) {
        this.type = type;
    }
    public double getSizes() {
        return sizes;
    }
    public void setSizes(double sizes) {
        this.sizes = sizes;
    }
    public int getDepid() {
@@ -147,12 +159,12 @@
        this.downloadTime = downloadTime;
    }
    public String getGeo() {
        return geo;
    public String getGeom() {
        return geom;
    }
    public void setGeo(String geo) {
        this.geo = geo;
    public void setGeom(String geo) {
        this.geom = geo;
    }
    public String getBak() {
@@ -162,4 +174,12 @@
    public void setBak(String bak) {
        this.bak = bak;
    }
    public String getCreateName() {
        return createName;
    }
    public void setCreateName(String createName) {
        this.createName = createName;
    }
}