GoodsIssueEntity.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. /**
  4. * 实体
  5. * 表名 mall_goods_issue
  6. *
  7. * @author Scott
  8. * @email
  9. * @date 2017-08-23 14:12:34
  10. */
  11. public class GoodsIssueEntity implements Serializable {
  12. private static final long serialVersionUID = 1L;
  13. //主键
  14. private Integer id;
  15. //问题
  16. private String question;
  17. //回答
  18. private String answer;
  19. /**
  20. * 设置:主键
  21. */
  22. public void setId(Integer id) {
  23. this.id = id;
  24. }
  25. /**
  26. * 获取:主键
  27. */
  28. public Integer getId() {
  29. return id;
  30. }
  31. /**
  32. * 设置:问题
  33. */
  34. public void setQuestion(String question) {
  35. this.question = question;
  36. }
  37. /**
  38. * 获取:问题
  39. */
  40. public String getQuestion() {
  41. return question;
  42. }
  43. /**
  44. * 设置:回答
  45. */
  46. public void setAnswer(String answer) {
  47. this.answer = answer;
  48. }
  49. /**
  50. * 获取:回答
  51. */
  52. public String getAnswer() {
  53. return answer;
  54. }
  55. }