WXMMSearchAnswer.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.ygj.yuemum.domain.wxmini;
  2. public class WXMMSearchAnswer {
  3. private Integer id;
  4. private Integer wma_question_id;
  5. private String wma_desc;
  6. private Integer wma_seq;
  7. private Integer wma_status;
  8. private String wma_value;
  9. public String getWma_value() {
  10. return wma_value;
  11. }
  12. public void setWma_value(String wma_value) {
  13. this.wma_value = wma_value;
  14. }
  15. public Integer getId() {
  16. return id;
  17. }
  18. public void setId(Integer id) {
  19. this.id = id;
  20. }
  21. public Integer getWma_question_id() {
  22. return wma_question_id;
  23. }
  24. public void setWma_question_id(Integer wma_question_id) {
  25. this.wma_question_id = wma_question_id;
  26. }
  27. public String getWma_desc() {
  28. return wma_desc;
  29. }
  30. public void setWma_desc(String wma_desc) {
  31. this.wma_desc = wma_desc;
  32. }
  33. public Integer getWma_seq() {
  34. return wma_seq;
  35. }
  36. public void setWma_seq(Integer wma_seq) {
  37. this.wma_seq = wma_seq;
  38. }
  39. public Integer getWma_status() {
  40. return wma_status;
  41. }
  42. public void setWma_status(Integer wma_status) {
  43. this.wma_status = wma_status;
  44. }
  45. }