123456789101112131415161718192021222324252627282930313233 |
- package cn.com.qmth.export;
- public class Answer {
- private Integer questionId;
- private String body;
- private Integer right;
- public String getBody() {
- return body;
- }
- public void setBody(String body) {
- this.body = body;
- }
- public Integer getRight() {
- return right;
- }
- public void setRight(Integer right) {
- this.right = right;
- }
- public Integer getQuestionId() {
- return questionId;
- }
- public void setQuestionId(Integer questionId) {
- this.questionId = questionId;
- }
- }
|