SentenceQuestionBaseExtendDto.java 517 B

123456789101112131415161718192021222324252627
  1. package com.qxgmat.dto.extend;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.dao.entity.SentenceQuestion;
  4. @Dto(entity = SentenceQuestion.class)
  5. public class SentenceQuestionBaseExtendDto {
  6. private String title;
  7. private Integer no;
  8. public String getTitle() {
  9. return title;
  10. }
  11. public void setTitle(String title) {
  12. this.title = title;
  13. }
  14. public Integer getNo() {
  15. return no;
  16. }
  17. public void setNo(Integer no) {
  18. this.no = no;
  19. }
  20. }