管道基础大数据平台系统开发-【后端】-Server
13693261870
2023-06-12 4ca77edbe07508f1bd4a878c7c00d7b7fbf0abb5
src/main/java/com/lf/server/entity/data/MetaFileEntity.java
@@ -4,7 +4,7 @@
import java.sql.Timestamp;
/**
 * 源数据文件
 * 元数据文件
 * @author WWW
 */
public class MetaFileEntity implements Serializable {
@@ -42,9 +42,13 @@
    private int rows;
    private int records;
    private String msg;
    private Boolean isMeta;
    private String xlsPath;
    public String getEventid() {
        return eventid;
@@ -174,6 +178,14 @@
        this.rows = rows;
    }
    public int getRecords() {
        return records;
    }
    public void setRecords(int records) {
        this.records = records;
    }
    public String getMsg() {
        return msg;
    }
@@ -189,4 +201,12 @@
    public void setIsMeta(Boolean isMeta) {
        this.isMeta = isMeta;
    }
    public String getXlsPath() {
        return xlsPath;
    }
    public void setXlsPath(String xlsPath) {
        this.xlsPath = xlsPath;
    }
}