package pwc.taxtech.atms.vat.entity; import java.io.Serializable; import java.util.Date; /** * * This class was generated by MyBatis Generator. * This class corresponds to the database table cell_comment * * @mbg.generated do_not_delete_during_merge */ public class CellComment implements Serializable { /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column cell_comment.id * * @mbg.generated */ private Long id; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column cell_comment.cell_data_id * * @mbg.generated */ private Long cellDataId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column cell_comment.user_id * * @mbg.generated */ private String userId; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column cell_comment.user_name * * @mbg.generated */ private String userName; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column cell_comment.comment * * @mbg.generated */ private String comment; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column cell_comment.reply_to_user_name * * @mbg.generated */ private String replyToUserName; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column cell_comment.create_time * * @mbg.generated */ private Date createTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column cell_comment.update_time * * @mbg.generated */ private Date updateTime; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column cell_comment.create_by * * @mbg.generated */ private String createBy; /** * * This field was generated by MyBatis Generator. * This field corresponds to the database column cell_comment.update_by * * @mbg.generated */ private String updateBy; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table cell_comment * * @mbg.generated */ private static final long serialVersionUID = 1L; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column cell_comment.id * * @return the value of cell_comment.id * * @mbg.generated */ public Long getId() { return id; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column cell_comment.id * * @param id the value for cell_comment.id * * @mbg.generated */ public void setId(Long id) { this.id = id; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column cell_comment.cell_data_id * * @return the value of cell_comment.cell_data_id * * @mbg.generated */ public Long getCellDataId() { return cellDataId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column cell_comment.cell_data_id * * @param cellDataId the value for cell_comment.cell_data_id * * @mbg.generated */ public void setCellDataId(Long cellDataId) { this.cellDataId = cellDataId; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column cell_comment.user_id * * @return the value of cell_comment.user_id * * @mbg.generated */ public String getUserId() { return userId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column cell_comment.user_id * * @param userId the value for cell_comment.user_id * * @mbg.generated */ public void setUserId(String userId) { this.userId = userId == null ? null : userId.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column cell_comment.user_name * * @return the value of cell_comment.user_name * * @mbg.generated */ public String getUserName() { return userName; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column cell_comment.user_name * * @param userName the value for cell_comment.user_name * * @mbg.generated */ public void setUserName(String userName) { this.userName = userName == null ? null : userName.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column cell_comment.comment * * @return the value of cell_comment.comment * * @mbg.generated */ public String getComment() { return comment; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column cell_comment.comment * * @param comment the value for cell_comment.comment * * @mbg.generated */ public void setComment(String comment) { this.comment = comment == null ? null : comment.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column cell_comment.reply_to_user_name * * @return the value of cell_comment.reply_to_user_name * * @mbg.generated */ public String getReplyToUserName() { return replyToUserName; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column cell_comment.reply_to_user_name * * @param replyToUserName the value for cell_comment.reply_to_user_name * * @mbg.generated */ public void setReplyToUserName(String replyToUserName) { this.replyToUserName = replyToUserName == null ? null : replyToUserName.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column cell_comment.create_time * * @return the value of cell_comment.create_time * * @mbg.generated */ public Date getCreateTime() { return createTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column cell_comment.create_time * * @param createTime the value for cell_comment.create_time * * @mbg.generated */ public void setCreateTime(Date createTime) { this.createTime = createTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column cell_comment.update_time * * @return the value of cell_comment.update_time * * @mbg.generated */ public Date getUpdateTime() { return updateTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column cell_comment.update_time * * @param updateTime the value for cell_comment.update_time * * @mbg.generated */ public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column cell_comment.create_by * * @return the value of cell_comment.create_by * * @mbg.generated */ public String getCreateBy() { return createBy; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column cell_comment.create_by * * @param createBy the value for cell_comment.create_by * * @mbg.generated */ public void setCreateBy(String createBy) { this.createBy = createBy == null ? null : createBy.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column cell_comment.update_by * * @return the value of cell_comment.update_by * * @mbg.generated */ public String getUpdateBy() { return updateBy; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column cell_comment.update_by * * @param updateBy the value for cell_comment.update_by * * @mbg.generated */ public void setUpdateBy(String updateBy) { this.updateBy = updateBy == null ? null : updateBy.trim(); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cell_comment * * @mbg.generated */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(getClass().getSimpleName()); sb.append(" ["); sb.append("Hash = ").append(hashCode()); sb.append(", id=").append(id); sb.append(", cellDataId=").append(cellDataId); sb.append(", userId=").append(userId); sb.append(", userName=").append(userName); sb.append(", comment=").append(comment); sb.append(", replyToUserName=").append(replyToUserName); sb.append(", createTime=").append(createTime); sb.append(", updateTime=").append(updateTime); sb.append(", createBy=").append(createBy); sb.append(", updateBy=").append(updateBy); sb.append("]"); return sb.toString(); } }