SysSuggestion.java 2.0 KB

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