管道基础大数据平台系统开发-【后端】-Server
12
13693261870
2022-11-21 c518caf85891966a0e57f5760731c7f4e7044a05
src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java
@@ -8,11 +8,27 @@
    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;
        this.tab = tab;
        this.subPath = subPath;
    }
    private String fileName;
    private String type;
    private String tab;
    private String subPath;
    private String entity;
@@ -40,6 +56,14 @@
        this.tab = tab;
    }
    public String getSubPath() {
        return subPath;
    }
    public void setSubPath(String subPath) {
        this.subPath = subPath;
    }
    public String getEntity() {
        return entity;
    }