管道基础大数据平台系统开发-【后端】-Server
13693261870
2022-12-25 035d6d22f53b0d5e84262df7c88da9d58b119e8b
src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java
@@ -8,13 +8,24 @@
    public TabMapperEntity() {
    }
    public TabMapperEntity(String fileName, String type, String tab, String subPath) {
        this.fileName = fileName;
        this.type = type;
        this.tab = tab;
        this.subPath = subPath;
    }
    private String fileName;
    private String type;
    private String tab;
    private String subPath;
    private String entity;
    private Integer rows;
    public String getFileName() {
        return fileName;
@@ -40,6 +51,14 @@
        this.tab = tab;
    }
    public String getSubPath() {
        return subPath;
    }
    public void setSubPath(String subPath) {
        this.subPath = subPath;
    }
    public String getEntity() {
        return entity;
    }
@@ -47,4 +66,12 @@
    public void setEntity(String entity) {
        this.entity = entity;
    }
    public Integer getRows() {
        return rows;
    }
    public void setRows(Integer rows) {
        this.rows = rows;
    }
}