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
822 B
25 lines
822 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 CourseRespVO {
|
|
|
|
@Schema(description = "主键,唯一标识一门课程", requiredMode = Schema.RequiredMode.REQUIRED, example = "822")
|
|
@ExcelProperty("主键,唯一标识一门课程")
|
|
private Long id;
|
|
|
|
@Schema(description = "课程名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "李四")
|
|
@ExcelProperty("课程名称")
|
|
private String courseName;
|
|
|
|
@Schema(description = "课程类型", example = "1")
|
|
@ExcelProperty("课程类型")
|
|
private String courseType;
|
|
|
|
} |