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/SysView.java | 208 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 207 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/highdatas/mdm/entity/SysView.java b/src/main/java/com/highdatas/mdm/entity/SysView.java index b328429..c7616a5 100644 --- a/src/main/java/com/highdatas/mdm/entity/SysView.java +++ b/src/main/java/com/highdatas/mdm/entity/SysView.java @@ -1,9 +1,13 @@ package com.highdatas.mdm.entity; -import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.activerecord.Model; +import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableName; +import com.highdatas.mdm.pojo.SysAssembleCheckType; + import java.io.Serializable; +import java.util.Date; +import java.util.List; /** * <p> @@ -28,12 +32,205 @@ private String baseMaintain; private String fields; + private ViewStatus status; @TableField("mapping_table") private String mappingTable; + @TableField("mapping_field") + private String mappingField; + + @TableField("empty_data") + private Boolean emptyData; + + private Boolean increment; + + @TableField("create_time") + private Date createTime; + @TableField("update_time") + private Date updateTime; @TableField("user_id") private String userId; + @TableField("menu_id") + private String menuId; + + @TableField("view_table_name") + private String viewTableName; + + @TableField("check_type") + private SysAssembleCheckType checkType; + @TableField("check_field") + private String checkField; + + + private Boolean subscribe; + private Boolean active; + @TableField("need_update") + private Boolean needUpdate; + + private transient String userName; + private transient String baseTableName; + private transient String baseVersion; + private transient List<SysViewJoin> viewJoinList; + private transient String subMenuName; + private transient String menuName; + + public String getCheckField() { + return checkField; + } + + public SysView setCheckField(String checkField) { + this.checkField = checkField; + return this; + } + + public String getMenuId() { + return menuId; + } + + public SysView setMenuId(String menuId) { + this.menuId = menuId; + return this; + } + + public String getMenuName() { + return menuName; + } + + public void setMenuName(String menuName) { + this.menuName = menuName; + } + + public ViewStatus getStatus() { + return status; + } + + public SysView setStatus(ViewStatus status) { + this.status = status; + return this; + } + + public Boolean getIncrement() { + return increment; + } + + public SysView setIncrement(Boolean increment) { + this.increment = increment; + return this; + } + + public String getViewTableName() { + return viewTableName; + } + + public SysView setViewTableName(String viewTableName) { + this.viewTableName = viewTableName; + return this; + } + + public SysAssembleCheckType getCheckType() { + return checkType; + } + + public SysView setCheckType(SysAssembleCheckType checkType) { + this.checkType = checkType; + return this; + } + + public Boolean getNeedUpdate() { + return needUpdate; + } + + public SysView setNeedUpdate(Boolean needUpdate) { + this.needUpdate = needUpdate; + return this; + } + + public Boolean getEmptyData() { + return emptyData; + } + + public SysView setEmptyData(Boolean emptyData) { + this.emptyData = emptyData; + return this; + } + + public Date getCreateTime() { + return createTime; + } + + public SysView setCreateTime(Date createTime) { + this.createTime = createTime; + return this; + } + + public Date getUpdateTime() { + return updateTime; + } + + public SysView setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + return this; + } + + public Boolean getSubscribe() { + return subscribe; + } + + public SysView setSubscribe(Boolean subscribe) { + this.subscribe = subscribe; + return this; + } + + public Boolean getActive() { + return active; + } + + public SysView setActive(Boolean active) { + this.active = active; + return this; + } + + public String getMappingField() { + return mappingField; + } + + public SysView setMappingField(String mappingField) { + this.mappingField = mappingField; + return this; + } + + public String getUserName() { + return userName; + } + + public void setUserName(String userName) { + this.userName = userName; + } + + public String getBaseTableName() { + return baseTableName; + } + + public void setBaseTableName(String baseTableName) { + this.baseTableName = baseTableName; + } + + public String getBaseVersion() { + return baseVersion; + } + + public void setBaseVersion(String baseVersion) { + this.baseVersion = baseVersion; + } + + public List<SysViewJoin> getViewJoinList() { + return viewJoinList; + } + + public void setViewJoinList(List<SysViewJoin> viewJoinList) { + this.viewJoinList = viewJoinList; + } public String getId() { return id; @@ -109,4 +306,13 @@ ", userId=" + userId + "}"; } + + public void setSubMenuName(String subMenuName) { + this.subMenuName = subMenuName; + } + + public String getSubMenuName() { + return subMenuName; + } + } -- Gitblit v1.8.0