1
0

HelpIssueVo.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. package com.kmall.api.entity;
  2. import java.io.Serializable;
  3. /**
  4. * 实体
  5. * 表名 mall_help_issue
  6. *
  7. * @author Scott
  8. * @email
  9. * @date 2017-12-02 10:04:20
  10. */
  11. public class HelpIssueVo 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. public void setId(Integer id) {
  37. this.id = id;
  38. }
  39. /**
  40. * 获取:
  41. */
  42. public Integer getId() {
  43. return id;
  44. }
  45. /**
  46. * 设置:问题分类
  47. */
  48. public void setTypeId(Integer typeId) {
  49. this.typeId = typeId;
  50. }
  51. /**
  52. * 获取:问题分类
  53. */
  54. public Integer getTypeId() {
  55. return typeId;
  56. }
  57. /**
  58. * 设置:
  59. */
  60. public void setQuestion(String question) {
  61. this.question = question;
  62. }
  63. /**
  64. * 获取:
  65. */
  66. public String getQuestion() {
  67. return question;
  68. }
  69. /**
  70. * 设置:
  71. */
  72. public void setAnswer(String answer) {
  73. this.answer = answer;
  74. }
  75. /**
  76. * 获取:
  77. */
  78. public String getAnswer() {
  79. return answer;
  80. }
  81. /**
  82. * 设置:排序
  83. */
  84. public void setSort(Integer sort) {
  85. this.sort = sort;
  86. }
  87. /**
  88. * 获取:排序
  89. */
  90. public Integer getSort() {
  91. return sort;
  92. }
  93. }