jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentPageReqVO.java
@@ -1,6 +1,8 @@
package cn.lihu.jh.module.ecg.controller.admin.appointment.vo;
import lombok.*;
import java.time.LocalDate;
import java.util.*;
import io.swagger.v3.oas.annotations.media.Schema;
import cn.lihu.jh.framework.common.pojo.PageParam;
@@ -22,7 +24,7 @@
    private String patName;
    @Schema(description = "患者性别")
    private Boolean patGender;
    private Byte patGender;
    @Schema(description = "患者生日")
    private LocalDateTime patBirthday;
@@ -58,7 +60,7 @@
    private String bookId;
    @Schema(description = "预约日期")
    private LocalDateTime bookDate;
    private LocalDate bookDate;
    @Schema(description = "预约时间段")
    private Integer bookTimeslot;
@@ -68,9 +70,12 @@
    private LocalDateTime[] bookTime;
    @Schema(description = "预约检查类型", example = "2")
    private Boolean bookCheckType;
    private Byte bookCheckType;
    @Schema(description = "预约来源:X系统、护士手动预约")
    private String bookSrc;
    @Schema(description = "已付款")
    private Integer paid;
}