QuestionFinishDto.java 275 B

12345678910111213
  1. package com.qxgmat.dto.request;
  2. public class QuestionFinishDto {
  3. private Integer userPaperId;
  4. public Integer getUserPaperId() {
  5. return userPaperId;
  6. }
  7. public void setUserPaperId(Integer userPaperId) {
  8. this.userPaperId = userPaperId;
  9. }
  10. }