package com.highdatas.mdm.entity;
|
|
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>
|
*
|
* </p>
|
*
|
* @author kimi
|
* @since 2020-04-15
|
*/
|
@TableName("sys_view")
|
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;
|
|
@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;
|
}
|
|
public SysView setId(String id) {
|
this.id = id;
|
return this;
|
}
|
public String getCode() {
|
return code;
|
}
|
|
public SysView setCode(String code) {
|
this.code = code;
|
return this;
|
}
|
public String getName() {
|
return name;
|
}
|
|
public SysView setName(String name) {
|
this.name = name;
|
return this;
|
}
|
public String getBaseMaintain() {
|
return baseMaintain;
|
}
|
|
public SysView setBaseMaintain(String baseMaintain) {
|
this.baseMaintain = baseMaintain;
|
return this;
|
}
|
public String getFields() {
|
return fields;
|
}
|
|
public SysView setFields(String fields) {
|
this.fields = fields;
|
return this;
|
}
|
public String getMappingTable() {
|
return mappingTable;
|
}
|
|
public SysView setMappingTable(String mappingTable) {
|
this.mappingTable = mappingTable;
|
return this;
|
}
|
public String getUserId() {
|
return userId;
|
}
|
|
public SysView setUserId(String userId) {
|
this.userId = userId;
|
return this;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "SysView{" +
|
"id=" + id +
|
", code=" + code +
|
", name=" + name +
|
", baseMaintain=" + baseMaintain +
|
", fields=" + fields +
|
", mappingTable=" + mappingTable +
|
", userId=" + userId +
|
"}";
|
}
|
|
public void setSubMenuName(String subMenuName) {
|
this.subMenuName = subMenuName;
|
}
|
|
public String getSubMenuName() {
|
return subMenuName;
|
}
|
|
}
|