TeacherCheckStuClaimDto.java 528 B

12345678910111213141516171819202122232425
  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 TeacherCheckStuClaimDto {
  12. /**
  13. * 教材主键编号
  14. */
  15. @ApiModelProperty(value = "教材主键编号")
  16. private Long textbookId;
  17. /**
  18. * 班级编号
  19. */
  20. @ApiModelProperty(value = "班级编号",hidden = true)
  21. private Long classId;
  22. }