123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.qxgmat.dto.extend;
- import com.nuliji.tools.annotation.Dto;
- import com.qxgmat.data.dao.entity.UserPaper;
- import com.qxgmat.data.inline.PaperStat;
- @Dto(entity = UserPaper.class)
- public class UserPaperBaseExtendDto {
- private Integer id;
- private Integer times;
- private Integer questionNumber;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getTimes() {
- return times;
- }
- public void setTimes(Integer times) {
- this.times = times;
- }
- public Integer getQuestionNumber() {
- return questionNumber;
- }
- public void setQuestionNumber(Integer questionNumber) {
- this.questionNumber = questionNumber;
- }
- }
|