1
0

HelpIssueEntity.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. /**
  4. * 实体
  5. * 表名 mall_help_issue
  6. *
  7. * @author Scott
  8. * @email
  9. * @date 2017-12-01 21:09:54
  10. */
  11. public class HelpIssueEntity implements Serializable {
  12. private static final long serialVersionUID = 1L;
  13. /**
  14. *
  15. */
  16. private Integer id;
  17. /**
  18. * 问题分类
  19. */
  20. private Integer typeId;
  21. /**
  22. *
  23. */
  24. private String question;
  25. /**
  26. *
  27. */
  28. private String answer;
  29. /**
  30. * 排序
  31. */
  32. private Integer sort;
  33. /**
  34. * 问题分类
  35. */
  36. private String typeName;
  37. /**
  38. * 设置:
  39. */
  40. public void setId(Integer id) {
  41. this.id = id;
  42. }
  43. /**
  44. * 获取:
  45. */
  46. public Integer getId() {
  47. return id;
  48. }
  49. /**
  50. * 设置:问题分类
  51. */
  52. public void setTypeId(Integer typeId) {
  53. this.typeId = typeId;
  54. }
  55. /**
  56. * 获取:问题分类
  57. */
  58. public Integer getTypeId() {
  59. return typeId;
  60. }
  61. /**
  62. * 设置:
  63. */
  64. public void setQuestion(String question) {
  65. this.question = question;
  66. }
  67. /**
  68. * 获取:
  69. */
  70. public String getQuestion() {
  71. return question;
  72. }
  73. /**
  74. * 设置:
  75. */
  76. public void setAnswer(String answer) {
  77. this.answer = answer;
  78. }
  79. /**
  80. * 获取:
  81. */
  82. public String getAnswer() {
  83. return answer;
  84. }
  85. /**
  86. * 设置:排序
  87. */
  88. public void setSort(Integer sort) {
  89. this.sort = sort;
  90. }
  91. /**
  92. * 获取:排序
  93. */
  94. public Integer getSort() {
  95. return sort;
  96. }
  97. public String getTypeName() {
  98. return typeName;
  99. }
  100. public void setTypeName(String typeName) {
  101. this.typeName = typeName;
  102. }
  103. }