管道基础大数据平台系统开发-【后端】-Server
5
13693261870
2023-01-09 57c63c7af9bcff4d38da1bf247ec0eac21887c48
src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java
@@ -8,12 +8,6 @@
    public TabMapperEntity() {
    }
    public TabMapperEntity(String fileName, String type, String tab) {
        this.fileName = fileName;
        this.type = type;
        this.tab = tab;
    }
    public TabMapperEntity(String fileName, String type, String tab, String subPath) {
        this.fileName = fileName;
        this.type = type;
@@ -23,61 +17,16 @@
    private String fileName;
    private String extName;
    private String type;
    private String tab;
    private String subPath;
    private String tab;
    private String entity;
    private Integer rows;
    public String getFileName() {
        return fileName;
    }
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public String getTab() {
        return tab;
    }
    public void setTab(String tab) {
        this.tab = tab;
    }
    public String getSubPath() {
        return subPath;
    }
    public void setSubPath(String subPath) {
        this.subPath = subPath;
    }
    public String getEntity() {
        return entity;
    }
    public void setEntity(String entity) {
        this.entity = entity;
    }
    public Integer getRows() {
        return rows;
    }
    public void setRows(Integer rows) {
        this.rows = rows;
    }
}