123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- package com.kmall.api.entity;
- import java.io.Serializable;
- /**
- * 实体
- * 表名 mall_help_issue
- *
- * @author Scott
- * @email
- * @date 2017-12-02 10:04:20
- */
- public class HelpIssueVo implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- *
- */
- private Integer id;
- /**
- * 问题分类
- */
- private Integer typeId;
- /**
- *
- */
- private String question;
- /**
- *
- */
- private String answer;
- /**
- * 排序
- */
- private Integer sort;
- /**
- * 设置:
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * 获取:
- */
- public Integer getId() {
- return id;
- }
- /**
- * 设置:问题分类
- */
- public void setTypeId(Integer typeId) {
- this.typeId = typeId;
- }
- /**
- * 获取:问题分类
- */
- public Integer getTypeId() {
- return typeId;
- }
- /**
- * 设置:
- */
- public void setQuestion(String question) {
- this.question = question;
- }
- /**
- * 获取:
- */
- public String getQuestion() {
- return question;
- }
- /**
- * 设置:
- */
- public void setAnswer(String answer) {
- this.answer = answer;
- }
- /**
- * 获取:
- */
- public String getAnswer() {
- return answer;
- }
- /**
- * 设置:排序
- */
- public void setSort(Integer sort) {
- this.sort = sort;
- }
- /**
- * 获取:排序
- */
- public Integer getSort() {
- return sort;
- }
- }
|