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.
33 lines
994 B
33 lines
994 B
package cn.iocoder.yudao.module.zhuguang.controller.admin.basic_info.vo;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.*;
|
|
import java.util.*;
|
|
import com.alibaba.excel.annotation.*;
|
|
|
|
@Schema(description = "管理后台 - 固定班级 Response VO")
|
|
@Data
|
|
@ExcelIgnoreUnannotated
|
|
public class FixedClassTableRespVO {
|
|
|
|
@Schema(description = "主键,唯一标识一个班级", requiredMode = Schema.RequiredMode.REQUIRED, example = "5093")
|
|
@ExcelProperty("主键,唯一标识一个班级")
|
|
private Long id;
|
|
|
|
@Schema(description = "年级")
|
|
@ExcelProperty("年级")
|
|
private String classGrade;
|
|
|
|
@Schema(description = "专业的id", example = "244")
|
|
@ExcelProperty("专业的id")
|
|
private Long specialtyId;
|
|
|
|
@Schema(description = "班级号")
|
|
@ExcelProperty("班级号")
|
|
private String classNumber;
|
|
|
|
@Schema(description = "辅导员的id", example = "1100")
|
|
@ExcelProperty("辅导员的id")
|
|
private Long counselorId;
|
|
|
|
} |