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.
34 lines
1.0 KiB
34 lines
1.0 KiB
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.FixedClassTableDO;
|
|
|
|
@Schema(description = "管理后台 - 辅导员新增/修改 Request VO")
|
|
@Data
|
|
public class CounselorSaveReqVO {
|
|
|
|
@Schema(description = "唯一标识一个辅导员", requiredMode = Schema.RequiredMode.REQUIRED, example = "21456")
|
|
private Long id;
|
|
|
|
@Schema(description = "辅导员的姓名", example = "李四")
|
|
private String counselorName;
|
|
|
|
@Schema(description = "辅导员的性别")
|
|
private String counselorSex;
|
|
|
|
@Schema(description = "辅导员的年龄")
|
|
private Long counselorAge;
|
|
|
|
@Schema(description = "辅导员的邮箱")
|
|
private String counselorEmail;
|
|
|
|
@Schema(description = "电话号码")
|
|
private String phoneNumber;
|
|
|
|
@Schema(description = "固定班级列表")
|
|
private List<FixedClassTableDO> fixedClassTables;
|
|
|
|
} |