12345678910111213141516171819202122232425 |
- package com.xjrsoft.module.textbook.dto;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- /**
- * @title: 教师查看一本教材的学生领取情况页面入参
- * @Author szs
- * @Date: 2023-12-25
- * @Version 1.0
- */
- @Data
- public class TeacherCheckStuClaimDto {
- /**
- * 教材主键编号
- */
- @ApiModelProperty(value = "教材主键编号")
- private Long textbookId;
- /**
- * 班级编号
- */
- @ApiModelProperty(value = "班级编号",hidden = true)
- private Long classId;
- }
|