src/main/java/com/highdatas/mdm/entity/MasterAuthor.java
@@ -51,6 +51,9 @@
    private Boolean active;
    private Boolean subscribe;
    private Boolean increment;
    @TableField("create_time")
    private Date createTime;
@@ -58,6 +61,46 @@
    private Date updateTime;
    private transient List<MasterAuthorDetail> fields;
    private transient String menuName;
    private transient Boolean isShow;
    private transient List<SysMenu> parentMenuList;
    public Boolean getIncrement() {
        return increment;
    }
    public MasterAuthor setIncrement(Boolean increment) {
        this.increment = increment;
        return this;
    }
    public Boolean getShow() {
        return isShow;
    }
    public MasterAuthor setShow(Boolean show) {
        isShow = show;
        return this;
    }
    public String getMenuName() {
        return menuName;
    }
    public MasterAuthor setMenuName(String menuName) {
        this.menuName = menuName;
        return this;
    }
    public Boolean getSubscribe() {
        return subscribe;
    }
    public MasterAuthor setSubscribe(Boolean subscribe) {
        this.subscribe = subscribe;
        return this;
    }
    public Boolean getUserGroup() {
        return userGroup;
@@ -187,4 +230,13 @@
        ", updateTime=" + updateTime +
        "}";
    }
    public MasterAuthor setParentMenuList(List<SysMenu> parentMenuList) {
        this.parentMenuList = parentMenuList;
        return this;
    }
    public List<SysMenu> getParentMenuList() {
        return parentMenuList;
    }
}