package com.highdatas.srs.entity;
|
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author kimi
|
* @since 2020-01-15
|
*/
|
@TableName("project_deal")
|
public class ProjectDeal extends Model<ProjectDeal> {
|
|
private static final long serialVersionUID = 1L;
|
|
private String id;
|
|
@TableField("scheme_detail_id")
|
private String schemeDetailId;
|
|
@TableField("scheme_id")
|
private String schemeId;
|
|
private String desp;
|
|
private String attachment;
|
|
@TableField("create_time")
|
private Date createTime;
|
|
@TableField("update_time")
|
private Date updateTime;
|
|
public String getSchemeId() {
|
return schemeId;
|
}
|
|
public ProjectDeal setSchemeId(String schemeId) {
|
this.schemeId = schemeId;
|
return this;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public ProjectDeal setId(String id) {
|
this.id = id;
|
return this;
|
}
|
public String getSchemeDetailId() {
|
return schemeDetailId;
|
}
|
|
public ProjectDeal setSchemeDetailId(String schemeDetailId) {
|
this.schemeDetailId = schemeDetailId;
|
return this;
|
}
|
public String getDesp() {
|
return desp;
|
}
|
|
public ProjectDeal setDesp(String desp) {
|
this.desp = desp;
|
return this;
|
}
|
public String getAttachment() {
|
return attachment;
|
}
|
|
public ProjectDeal setAttachment(String attachment) {
|
this.attachment = attachment;
|
return this;
|
}
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public ProjectDeal setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
return this;
|
}
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public ProjectDeal setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
return this;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "ProjectDeal{" +
|
"id=" + id +
|
", schemeDetailId=" + schemeDetailId +
|
", desp=" + desp +
|
", attachment=" + attachment +
|
", createTime=" + createTime +
|
", updateTime=" + updateTime +
|
"}";
|
}
|
}
|