From c007f0ca1785db093d48f4846cda82fe8e955765 Mon Sep 17 00:00:00 2001 From: kimi <kimi42345@gmail.com> Date: 星期三, 27 五月 2020 09:59:29 +0800 Subject: [PATCH] merage --- src/main/java/com/highdatas/mdm/entity/SysView.java | 297 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 292 insertions(+), 5 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..3ca95a8 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> @@ -17,23 +21,297 @@ public class SysView extends Model<SysView> { private static final long serialVersionUID = 1L; - + /* + * 涓婚敭 + * */ private String id; - + /* + * 缂栫爜 + * */ private String code; - + /* + * 鍚嶇О + * */ private String name; + /* + * 鍩虹鐗堟湰 + * */ @TableField("base_maintain") private String baseMaintain; + /* + * 瀛楁 + * */ private String fields; + /* + * 瑙嗗浘鐘舵�� + * */ + private ViewStatus status; + /* + * mapping 琛ㄥ悕 + * */ @TableField("mapping_table") private String mappingTable; - + /* + * 1瀵�1mapping瀛楁 + * */ + @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; + /* + * 鍒涘缓瑙嗗浘鐨勭敤鎴穒d + * */ @TableField("user_id") private String userId; + /* + * 涓婚id + * */ + @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; + /* + * 閫昏緫杞崲鍒楄〃 + * */ + private transient List<SysViewLogicmap> logicmapList; + + public List<SysViewLogicmap> getLogicmapList() { + return logicmapList; + } + + public void setLogicmapList(List<SysViewLogicmap> logicmapList) { + this.logicmapList = logicmapList; + } + + 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 +387,13 @@ ", userId=" + userId + "}"; } + + public void setSubMenuName(String subMenuName) { + this.subMenuName = subMenuName; + } + + public String getSubMenuName() { + return subMenuName; + } + } -- Gitblit v1.8.0