潘志宝
2024-09-09 ed81b7371e376df35448b81531d30dd9024bd44a
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.infra.controller.admin.demo.vo;
H 2
3 import lombok.*;
4 import java.util.*;
5 import io.swagger.v3.oas.annotations.media.Schema;
6 import com.iailab.framework.common.pojo.PageParam;
7 import org.springframework.format.annotation.DateTimeFormat;
8 import java.time.LocalDateTime;
9
10 import static com.iailab.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
11
12 @Schema(description = "管理后台 - 学生分页 Request VO")
13 @Data
14 @EqualsAndHashCode(callSuper = true)
15 @ToString(callSuper = true)
16 public class InfraStudentPageReqVO extends PageParam {
17
18     @Schema(description = "名字", example = "芋头")
19     private String name;
20
21     @Schema(description = "出生日期")
22     private LocalDateTime birthday;
23
24     @Schema(description = "性别", example = "1")
25     private Integer sex;
26
27     @Schema(description = "是否有效", example = "true")
28     private Boolean enabled;
29
30     @Schema(description = "创建时间")
31     @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
32     private LocalDateTime[] createTime;
33
34 }