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.
25 lines
906 B
25 lines
906 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 StudentCourseClassRespVO {
|
|
|
|
@Schema(description = "主键,唯一标识一条签到记录", requiredMode = Schema.RequiredMode.REQUIRED, example = "19839")
|
|
@ExcelProperty("主键,唯一标识一条签到记录")
|
|
private Long id;
|
|
|
|
@Schema(description = "学生ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "23139")
|
|
@ExcelProperty("学生ID")
|
|
private Long studentId;
|
|
|
|
@Schema(description = "课程班级的ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "28654")
|
|
@ExcelProperty("课程班级的ID")
|
|
private Long courseId;
|
|
|
|
} |