12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.ygj.yuemum.domain.wxmini;
- public class WXMMSearchAnswer {
- private Integer id;
- private Integer wma_question_id;
- private String wma_desc;
- private Integer wma_seq;
- private Integer wma_status;
- private String wma_value;
- public String getWma_value() {
- return wma_value;
- }
- public void setWma_value(String wma_value) {
- this.wma_value = wma_value;
- }
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getWma_question_id() {
- return wma_question_id;
- }
- public void setWma_question_id(Integer wma_question_id) {
- this.wma_question_id = wma_question_id;
- }
- public String getWma_desc() {
- return wma_desc;
- }
- public void setWma_desc(String wma_desc) {
- this.wma_desc = wma_desc;
- }
- public Integer getWma_seq() {
- return wma_seq;
- }
- public void setWma_seq(Integer wma_seq) {
- this.wma_seq = wma_seq;
- }
- public Integer getWma_status() {
- return wma_status;
- }
- public void setWma_status(Integer wma_status) {
- this.wma_status = wma_status;
- }
- }
|