From 5268a2b7dfa556bd6f5a2d5e446cea3ea9940c10 Mon Sep 17 00:00:00 2001 From: kimi <kimi42345@gmail.com> Date: 星期三, 22 四月 2020 11:18:23 +0800 Subject: [PATCH] add 分发 master_author 添加字段 subscribe increment, 添加7个表 master_author_subscribe master_author_unactive sys_dispense_config sys_dispense_logs sys_view sys_view_join sys_view_logic --- src/main/java/com/highdatas/mdm/entity/MasterAuthor.java | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 52 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/highdatas/mdm/entity/MasterAuthor.java b/src/main/java/com/highdatas/mdm/entity/MasterAuthor.java index b5ffb9e..f06f74f 100644 --- a/src/main/java/com/highdatas/mdm/entity/MasterAuthor.java +++ b/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; + } } -- Gitblit v1.8.0