SysSuggestion.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package com.keao.edu.common.entity;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. /**
  4. * 对应数据库表(sys_suggestion):
  5. */
  6. public class SysSuggestion {
  7. /** 编号 */
  8. private Long id;
  9. /** 联系方式 */
  10. private String mobileNo;
  11. /** 标题 */
  12. private String title;
  13. /** 内容 */
  14. private String content;
  15. /** 用户编号 */
  16. private Long userId;
  17. /** 提交时间 */
  18. private java.util.Date createTime;
  19. /** */
  20. private String clientType;
  21. public void setId(Long id){
  22. this.id = id;
  23. }
  24. public Long getId(){
  25. return this.id;
  26. }
  27. public void setMobileNo(String mobileNo){
  28. this.mobileNo = mobileNo;
  29. }
  30. public String getMobileNo(){
  31. return this.mobileNo;
  32. }
  33. public void setTitle(String title){
  34. this.title = title;
  35. }
  36. public String getTitle(){
  37. return this.title;
  38. }
  39. public void setContent(String content){
  40. this.content = content;
  41. }
  42. public String getContent(){
  43. return this.content;
  44. }
  45. public void setUserId(Long userId){
  46. this.userId = userId;
  47. }
  48. public Long getUserId(){
  49. return this.userId;
  50. }
  51. public void setCreateTime(java.util.Date createTime){
  52. this.createTime = createTime;
  53. }
  54. public java.util.Date getCreateTime(){
  55. return this.createTime;
  56. }
  57. public void setClientType(String clientType){
  58. this.clientType = clientType;
  59. }
  60. public String getClientType(){
  61. return this.clientType;
  62. }
  63. @Override
  64. public String toString() {
  65. return ToStringBuilder.reflectionToString(this);
  66. }
  67. }