package com.highdatas.srs.entity; import java.util.Date; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.activerecord.Model; import com.baomidou.mybatisplus.annotations.TableName; import java.io.Serializable; /** *

* *

* * @author kimi * @since 2020-01-15 */ @TableName("project_log") public class ProjectLog extends Model { private static final long serialVersionUID = 1L; private String id; @TableField("scheme_deatil_id") private String schemeDeatilId; @TableField("user_id") private String userId; private String desp; @TableField("create_time") private Date createTime; public String getId() { return id; } public ProjectLog setId(String id) { this.id = id; return this; } public String getSchemeDeatilId() { return schemeDeatilId; } public ProjectLog setSchemeDeatilId(String schemeDeatilId) { this.schemeDeatilId = schemeDeatilId; return this; } public String getUserId() { return userId; } public ProjectLog setUserId(String userId) { this.userId = userId; return this; } public String getDesp() { return desp; } public ProjectLog setDesp(String desp) { this.desp = desp; return this; } public Date getCreateTime() { return createTime; } public ProjectLog setCreateTime(Date createTime) { this.createTime = createTime; return this; } @Override protected Serializable pkVal() { return this.id; } @Override public String toString() { return "ProjectLog{" + "id=" + id + ", schemeDeatilId=" + schemeDeatilId + ", userId=" + userId + ", desp=" + desp + ", createTime=" + createTime + "}"; } }