TeacherCheckByStuDto.java 690 B

123456789101112131415161718192021222324252627282930
  1. package com.xjrsoft.module.textbook.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. /**
  5. * @title: 教师教材领取按学生查看页面入参
  6. * @Author szs
  7. * @Date: 2023-12-25
  8. * @Version 1.0
  9. */
  10. @Data
  11. public class TeacherCheckByStuDto {
  12. /**
  13. * 学生用户编号
  14. */
  15. @ApiModelProperty("学生用户编号")
  16. private Long studentUserId;
  17. /**
  18. * 班级编号
  19. */
  20. @ApiModelProperty(value = "班级编号",hidden = true)
  21. private Long classId;
  22. /**
  23. * 领取情况(1=全部数据,2=该教材全部领取,3=该教材部分未领取)
  24. */
  25. @ApiModelProperty("领取情况")
  26. private Integer claimStatus;
  27. }