package com.highdatas.mdm.entity;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author kimi
|
* @since 2020-04-15
|
*/
|
@TableName("sys_subscribe")
|
public class SysSubscribe extends Model<SysSubscribe> {
|
|
private static final long serialVersionUID = 1L;
|
/*
|
*主键
|
* */
|
private String id;
|
/*
|
*类型
|
* */
|
private String type;
|
/*
|
*版本id
|
* */
|
@TableField("maintain_id")
|
private String maintainId;
|
/*
|
*表名
|
* */
|
@TableField("table_name")
|
private String tableName;
|
/*
|
*用户id
|
* */
|
@TableField("user_id")
|
private String userId;
|
|
public String getId() {
|
return id;
|
}
|
|
public SysSubscribe setId(String id) {
|
this.id = id;
|
return this;
|
}
|
public String getType() {
|
return type;
|
}
|
|
public SysSubscribe setType(String type) {
|
this.type = type;
|
return this;
|
}
|
public String getMaintainId() {
|
return maintainId;
|
}
|
|
public SysSubscribe setMaintainId(String maintainId) {
|
this.maintainId = maintainId;
|
return this;
|
}
|
public String getTableName() {
|
return tableName;
|
}
|
|
public SysSubscribe setTableName(String tableName) {
|
this.tableName = tableName;
|
return this;
|
}
|
public String getUserId() {
|
return userId;
|
}
|
|
public SysSubscribe setUserId(String userId) {
|
this.userId = userId;
|
return this;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "SysSubscribe{" +
|
"id=" + id +
|
", type=" + type +
|
", maintainId=" + maintainId +
|
", tableName=" + tableName +
|
", userId=" + userId +
|
"}";
|
}
|
}
|