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.
22 lines
710 B
22 lines
710 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 jakarta.validation.constraints.*;
|
|
import cn.iocoder.yudao.module.zhuguang.dal.dataobject.basic_info.SpecialtyDO;
|
|
|
|
@Schema(description = "管理后台 - 系新增/修改 Request VO")
|
|
@Data
|
|
public class DepartmentSaveReqVO {
|
|
|
|
@Schema(description = "唯一标识一个系", requiredMode = Schema.RequiredMode.REQUIRED, example = "4336")
|
|
private Long id;
|
|
|
|
@Schema(description = "系名称", example = "张三")
|
|
private String departmentName;
|
|
|
|
@Schema(description = "专业列表")
|
|
private List<SpecialtyDO> specialtys;
|
|
|
|
} |