管道基础大数据平台系统开发-【后端】-Server
1
sws
2022-11-26 ab849f796bdc17236a95ea5fe5c166fb8f24a75c
src/main/java/com/lf/server/entity/ctrl/TabMapperEntity.java
@@ -8,13 +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;
@@ -31,6 +24,8 @@
    private String subPath;
    private String entity;
    private Integer rows;
    public String getFileName() {
        return fileName;
@@ -71,4 +66,12 @@
    public void setEntity(String entity) {
        this.entity = entity;
    }
    public Integer getRows() {
        return rows;
    }
    public void setRows(Integer rows) {
        this.rows = rows;
    }
}