1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package cn.iocoder.yudao.module.module.system.controller.admin.user.vo;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.*;
- import java.util.*;
- import java.time.LocalDateTime;
- import java.time.LocalDateTime;
- import javax.validation.constraints.*;
- import org.springframework.format.annotation.DateTimeFormat;
- import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
- /**
- * 用户 Base VO,提供给添加、修改、详细的子 VO 使用
- * 如果子 VO 存在差异的字段,请不要添加到这里,影响 Swagger 文档生成
- */
- @Data
- public class SystemUserBaseVO {
- @Schema(description = "名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋头")
- @NotEmpty(message = "名字不能为空")
- private String name;
- @Schema(description = "头像", example = "https://www.iocoder.cn/1.png")
- private String avatar;
- @Schema(description = "视频", example = "https://www.iocoder.cn/1.mp4")
- private String video;
- @Schema(description = "个人简介", example = "我是介绍")
- private String description;
- @Schema(description = "性别 1", example = "男")
- private String sex1;
- @Schema(description = "性别 2", example = "1")
- private Integer sex2;
- @Schema(description = "性别 3", example = "true")
- private Boolean sex3;
- @Schema(description = "出生日期")
- @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
- private LocalDateTime birthday;
- @Schema(description = "备注", example = "我是备注")
- private String memo;
- @Schema(description = "创建时间")
- @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
- private LocalDateTime createTime;
- }
|