eight
2024-08-23 3e696d457f13338a7eb5ad0935a7d2c7affcf605
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/queuePageReqVO.java
@@ -1,10 +1,11 @@
package cn.lihu.jh.module.ecg.controller.admin.queue.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.LocalDate;
import java.time.LocalDateTime;
import static cn.lihu.jh.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
@@ -13,7 +14,7 @@
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class queuePageReqVO extends PageParam {
public class QueuePageReqVO extends PageParam {
    @Schema(description = "患者编号", example = "30473")
    private String patId;
@@ -23,6 +24,9 @@
    @Schema(description = "患者性别")
    private Boolean patGender;
    @Schema(description = "预约日期")
    private LocalDate bookDate;
    @Schema(description = "预约时间段")
    private Integer bookTimeslot;
@@ -34,7 +38,7 @@
    private Integer seqNum;
    @Schema(description = "10:排队中 20:候诊准备 30:就诊中 40:就诊完成 50:过号 60:过期", example = "1")
    private Boolean status;
    private Byte status;
    @Schema(description = "过号标记")
    private Boolean passed;
@@ -43,10 +47,13 @@
    private Boolean expired;
    @Schema(description = "诊室编号")
    private String roomNum;
    private Long roomId;
    @Schema(description = "诊室名称")
    private String roomName;
    @Schema(description = "诊疗床编号")
    private String bedNum;
    private String bedNo;
    @Schema(description = "创建时间")
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)