eight
2024-11-26 a73ef74a7b215299d2e6be291266d7cc1c3da85c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package cn.lihu.jh.module.ecg.controller.admin.queuesequence.vo;
 
import lombok.*;
import java.util.*;
import io.swagger.v3.oas.annotations.media.Schema;
import cn.lihu.jh.framework.common.pojo.PageParam;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDateTime;
 
import static cn.lihu.jh.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
 
@Schema(description = "管理后台 - 当天序号分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class QueueSequencePageReqVO extends PageParam {
 
    @Schema(description = "检查类型", example = "2")
    private Integer checkType;
 
    @Schema(description = "时段")
    private Integer timeSlot;
 
    @Schema(description = "该时段 普通患者 序号")
    private Integer queueNo;
 
    @Schema(description = "该时段 vip 序号")
    private Integer queueVipNo;
 
    @Schema(description = "该时段 普通患者 序号满")
    private Integer queueFull;
 
    @Schema(description = "该时段 vip 序号满")
    private Integer queueVipFull;
 
    @Schema(description = "创建时间")
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    private LocalDateTime[] createTime;
 
}