ExaminationRestartDto.java 258 B

12345678910111213
  1. package com.qxgmat.dto.request;
  2. public class ExaminationRestartDto {
  3. private Integer structId;
  4. public Integer getStructId() {
  5. return structId;
  6. }
  7. public void setStructId(Integer structId) {
  8. this.structId = structId;
  9. }
  10. }