QuestionStudentAnswerDTO.java 480 B

123456789101112131415161718192021
  1. //package nju.seec.helper.dto;
  2. //
  3. //
  4. //import com.fasterxml.jackson.annotation.JsonProperty;
  5. //import lombok.Data;
  6. //
  7. //import javax.validation.constraints.NotBlank;
  8. //import javax.validation.constraints.NotNull;
  9. //
  10. ///**
  11. // * @author sheen
  12. // */
  13. //@Data
  14. //public class QuestionStudentAnswerDTO {
  15. // @JsonProperty(value = "id")
  16. // @NotBlank
  17. // private String questionId;
  18. // @JsonProperty(value = "studentAnswer")
  19. // @NotNull
  20. // private Object studentAnswer;
  21. //}