eight
2024-12-12 2bc90e242eceb83d9aa80d48ea9f991c0f9b99c6
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentPageReqVO.java
@@ -1,6 +1,9 @@
package cn.lihu.jh.module.ecg.controller.admin.appointment.vo;
import com.alibaba.excel.annotation.ExcelProperty;
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;
@@ -14,6 +17,12 @@
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class AppointmentPageReqVO extends PageParam {
    @Schema(description = "预约申请号", example = "2024435")
    private String applyNo;
    @Schema(description = "就诊流水号", example = "2024546")
    private String episodeId;
    @Schema(description = "患者编号", example = "29034")
    private String patId;
@@ -54,11 +63,8 @@
    @Schema(description = "床号")
    private String patBedNo;
    @Schema(description = "预约编号", example = "27849")
    private String bookId;
    @Schema(description = "预约日期")
    private LocalDateTime bookDate;
    private LocalDate bookDate;
    @Schema(description = "预约时间段")
    private Integer bookTimeslot;
@@ -68,9 +74,12 @@
    private LocalDateTime[] bookTime;
    @Schema(description = "预约检查类型", example = "2")
    private Byte bookCheckType;
    private Integer bookCheckType;
    @Schema(description = "预约来源:X系统、护士手动预约")
    private String bookSrc;
    @Schema(description = "已付款")
    private Integer paid;
}