eight
2024-09-19 a940b56e9781e2b4e56dbe05a896dba33a6905c6
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package cn.lihu.jh.module.ecg.controller.admin.call.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 CallPageReqVO extends PageParam {
 
    @Schema(description = "患者编号", example = "1991")
    private String patId;
 
    @Schema(description = "患者姓名", example = "李四")
    private String patName;
 
    @Schema(description = "患者性别")
    private Integer patGender;
 
    @Schema(description = "排队序号")
    private Integer seqNum;
 
    @Schema(description = "过号标记")
    private Integer passed;
 
    @Schema(description = "预约过期标记")
    private Integer expired;
 
    @Schema(description = "叫号状态 0 未播 1 已播 ")
    private Integer called;
 
    @Schema(description = "插队标记")
    private Integer jumpFlag;
 
    @Schema(description = "诊室编号", example = "30859")
    private Long roomId;
 
    @Schema(description = "诊室名称", example = "李四")
    private String roomName;
 
    @Schema(description = "诊疗床编号")
    private String bedNo;
 
    @Schema(description = "创建时间")
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    private LocalDateTime[] createTime;
 
}