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.
39 lines
1.3 KiB
39 lines
1.3 KiB
package cn.iocoder.yudao.module.zhuguang.controller.admin.basic_info.vo;
|
|
|
|
import cn.iocoder.yudao.module.zhuguang.dal.dataobject.dormitory_check_in.DormRuleRecordsDO;
|
|
import cn.iocoder.yudao.module.zhuguang.dal.dataobject.late_signing.NightRuleRecordDO;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.*;
|
|
import java.util.*;
|
|
|
|
import cn.iocoder.yudao.module.zhuguang.dal.dataobject.basic_info.StudentDO;
|
|
|
|
@Schema(description = "管理后台 - 固定班级新增/修改 Request VO")
|
|
@Data
|
|
public class FixedClassTableSaveReqVO {
|
|
|
|
@Schema(description = "主键,唯一标识一个班级", requiredMode = Schema.RequiredMode.REQUIRED, example = "5093")
|
|
private Long id;
|
|
|
|
@Schema(description = "年级")
|
|
private String classGrade;
|
|
|
|
@Schema(description = "专业的id", example = "244")
|
|
private Long specialtyId;
|
|
|
|
@Schema(description = "班级号")
|
|
private String classNumber;
|
|
|
|
@Schema(description = "辅导员的id", example = "1100")
|
|
private Long counselorId;
|
|
|
|
@Schema(description = "宿舍规则记录列表")
|
|
private List<DormRuleRecordsDO> dormRuleRecordss;
|
|
|
|
@Schema(description = "晚自习规则记录列表")
|
|
private List<NightRuleRecordDO> nightRuleRecords;
|
|
|
|
@Schema(description = "学生信息列表")
|
|
private List<StudentDO> students;
|
|
|
|
} |