Answer.java 494 B

123456789101112131415161718192021222324252627282930313233
  1. package cn.com.qmth.export;
  2. public class Answer {
  3. private Integer questionId;
  4. private String body;
  5. private Integer right;
  6. public String getBody() {
  7. return body;
  8. }
  9. public void setBody(String body) {
  10. this.body = body;
  11. }
  12. public Integer getRight() {
  13. return right;
  14. }
  15. public void setRight(Integer right) {
  16. this.right = right;
  17. }
  18. public Integer getQuestionId() {
  19. return questionId;
  20. }
  21. public void setQuestionId(Integer questionId) {
  22. this.questionId = questionId;
  23. }
  24. }