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-18
|
*/
|
@TableName("master_author_unactive")
|
public class MasterAuthorUnactive extends Model<MasterAuthorUnactive> {
|
|
private static final long serialVersionUID = 1L;
|
/*
|
*主键
|
* */
|
private String id;
|
/*
|
*版本id
|
* */
|
@TableField("maintain_id")
|
private String maintainId;
|
/*
|
*用户id
|
* */
|
@TableField("user_id")
|
private String userId;
|
|
public String getId() {
|
return id;
|
}
|
|
public MasterAuthorUnactive setId(String id) {
|
this.id = id;
|
return this;
|
}
|
public String getMaintainId() {
|
return maintainId;
|
}
|
|
public MasterAuthorUnactive setMaintainId(String maintainId) {
|
this.maintainId = maintainId;
|
return this;
|
}
|
public String getUserId() {
|
return userId;
|
}
|
|
public MasterAuthorUnactive setUserId(String userId) {
|
this.userId = userId;
|
return this;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "MasterAuthorUnactive{" +
|
"id=" + id +
|
", maintainId=" + maintainId +
|
", userId=" + userId +
|
"}";
|
}
|
}
|