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
763 B
25 lines
763 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 SpecialtyRespVO {
|
|
|
|
@Schema(description = "唯一标识一个专业", requiredMode = Schema.RequiredMode.REQUIRED, example = "10284")
|
|
@ExcelProperty("唯一标识一个专业")
|
|
private Long id;
|
|
|
|
@Schema(description = "专业名称", example = "芋艿")
|
|
@ExcelProperty("专业名称")
|
|
private String specialtyName;
|
|
|
|
@Schema(description = "系的ID", example = "29319")
|
|
@ExcelProperty("系的ID")
|
|
private Long departmentId;
|
|
|
|
} |