潘志宝
2024-09-09 ed81b7371e376df35448b81531d30dd9024bd44a
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.infra.controller.admin.demo.vo;
H 2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.*;
5 import java.util.*;
6 import javax.validation.constraints.*;
7 import java.util.*;
8 import org.springframework.format.annotation.DateTimeFormat;
9 import java.time.LocalDateTime;
10
11 @Schema(description = "管理后台 - 学生新增/修改 Request VO")
12 @Data
13 public class InfraStudentSaveReqVO {
14
15     @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
16     private Long id;
17
18     @Schema(description = "名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋头")
19     @NotEmpty(message = "名字不能为空")
20     private String name;
21
22     @Schema(description = "简介", requiredMode = Schema.RequiredMode.REQUIRED, example = "我是介绍")
23     @NotEmpty(message = "简介不能为空")
24     private String description;
25
26     @Schema(description = "出生日期", requiredMode = Schema.RequiredMode.REQUIRED)
27     @NotNull(message = "出生日期不能为空")
28     private LocalDateTime birthday;
29
30     @Schema(description = "性别", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
31     @NotNull(message = "性别不能为空")
32     private Integer sex;
33
34     @Schema(description = "是否有效", requiredMode = Schema.RequiredMode.REQUIRED, example = "true")
35     @NotNull(message = "是否有效不能为空")
36     private Boolean enabled;
37
38     @Schema(description = "头像", requiredMode = Schema.RequiredMode.REQUIRED, example = "https://www.baidu.com/1.png")
39     @NotEmpty(message = "头像不能为空")
40     private String avatar;
41
42     @Schema(description = "附件", requiredMode = Schema.RequiredMode.REQUIRED, example = "https://www.baidu.com/1.mp4")
43     @NotEmpty(message = "附件不能为空")
44     private String video;
45
46     @Schema(description = "备注", requiredMode = Schema.RequiredMode.REQUIRED, example = "我是备注")
47     @NotEmpty(message = "备注不能为空")
48     private String memo;
49
50 }