You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.5 KiB
47 lines
1.5 KiB
package cn.iocoder.yudao.module.zhuguang.controller.admin.basic_info.vo;
|
|
|
|
import lombok.*;
|
|
import java.util.*;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
|
|
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
|
|
@Schema(description = "管理后台 - 课程班级分页 Request VO")
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@ToString(callSuper = true)
|
|
public class CourseClassPageReqVO extends PageParam {
|
|
|
|
@Schema(description = "学期")
|
|
private String semester;
|
|
|
|
@Schema(description = "课程ID", example = "21103")
|
|
private Long courseId;
|
|
|
|
@Schema(description = "班级号")
|
|
private String classNum;
|
|
|
|
@Schema(description = "授课老师ID", example = "11374")
|
|
private Long teacherId;
|
|
|
|
@Schema(description = "学生人数")
|
|
private Integer peopleNum;
|
|
|
|
@Schema(description = "说明", example = "你说的对")
|
|
private String description;
|
|
|
|
@Schema(description = "课代表ID", example = "14228")
|
|
private Long studentId;
|
|
|
|
@Schema(description = "创建时间")
|
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
private LocalDateTime[] createTime;
|
|
|
|
@Schema(description = "更新时间")
|
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
private LocalDateTime[] updateTime;
|
|
|
|
} |