SystemUserPageReqVO 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package cn.iocoder.yudao.module.system.controller.admin.user.vo;
  2. import lombok.*;
  3. import java.util.*;
  4. import io.swagger.v3.oas.annotations.media.Schema;
  5. import cn.iocoder.yudao.framework.common.pojo.PageParam;
  6. import org.springframework.format.annotation.DateTimeFormat;
  7. import java.time.LocalDateTime;
  8. import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
  9. @Schema(description = "管理后台 - 用户分页 Request VO")
  10. @Data
  11. @EqualsAndHashCode(callSuper = true)
  12. @ToString(callSuper = true)
  13. public class SystemUserPageReqVO extends PageParam {
  14. @Schema(description = "名字", example = "芋头")
  15. private String name;
  16. @Schema(description = "性别 1", example = "男")
  17. private String sex1;
  18. @Schema(description = "性别 2", example = "1")
  19. private Integer sex2;
  20. @Schema(description = "性别 3", example = "true")
  21. private Boolean sex3;
  22. @Schema(description = "出生日期")
  23. private LocalDateTime birthday;
  24. @Schema(description = "创建时间")
  25. @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
  26. private LocalDateTime[] createTime;
  27. }