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.
21 lines
629 B
21 lines
629 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 DepartmentRespVO {
|
|
|
|
@Schema(description = "唯一标识一个系", requiredMode = Schema.RequiredMode.REQUIRED, example = "4336")
|
|
@ExcelProperty("唯一标识一个系")
|
|
private Long id;
|
|
|
|
@Schema(description = "系名称", example = "张三")
|
|
@ExcelProperty("系名称")
|
|
private String departmentName;
|
|
|
|
} |