| 1234567891011121314151617181920212223242526272829 |
- package com.xjrsoft.module.student.dto;
- import com.xjrsoft.common.page.PageInput;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.util.List;
- /**
- * @title: 学生荣誉分页查询入参
- * @Author dzx
- * @Date: 2023-12-05
- * @Version 1.0
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- public class StudentHonorsPageDto extends PageInput {
- @ApiModelProperty("班级id")
- public Long classId;
- @ApiModelProperty(value = "当前用户所管理的班级", hidden = true)
- public List<Long> classIdList;
- @ApiModelProperty("学期Id")
- private Long baseSemesterId;
- }
|