package com.keao.edu.common.entity; import org.apache.commons.lang3.builder.ToStringBuilder; /** * 对应数据库表(sys_suggestion): */ public class SysSuggestion { /** 编号 */ private Long id; /** 联系方式 */ private String mobileNo; /** 标题 */ private String title; /** 内容 */ private String content; /** 用户编号 */ private Long userId; /** 提交时间 */ private java.util.Date createTime; /** */ private String clientType; public void setId(Long id){ this.id = id; } public Long getId(){ return this.id; } public void setMobileNo(String mobileNo){ this.mobileNo = mobileNo; } public String getMobileNo(){ return this.mobileNo; } public void setTitle(String title){ this.title = title; } public String getTitle(){ return this.title; } public void setContent(String content){ this.content = content; } public String getContent(){ return this.content; } public void setUserId(Long userId){ this.userId = userId; } public Long getUserId(){ return this.userId; } public void setCreateTime(java.util.Date createTime){ this.createTime = createTime; } public java.util.Date getCreateTime(){ return this.createTime; } public void setClientType(String clientType){ this.clientType = clientType; } public String getClientType(){ return this.clientType; } @Override public String toString() { return ToStringBuilder.reflectionToString(this); } }