liusheng
4 天以前 a2a840d4969d680b30eeec184a7059fef64d0b84
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentPageReqVO.java
@@ -1,10 +1,16 @@
package cn.lihu.jh.module.ecg.controller.admin.appointment.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.*;
import java.sql.Date;
import java.time.LocalDate;
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;
@@ -14,6 +20,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 +66,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 +77,52 @@
    private LocalDateTime[] bookTime;
    @Schema(description = "预约检查类型", example = "2")
    private Boolean bookCheckType;
    private Integer bookCheckType;
    @Schema(description = "预约来源:X系统、护士手动预约")
    private String bookSrc;
    private Integer bookSrc;
}
    @Schema(description = "申请单状态")
    private String[] status;
    @Schema(description = "已付款")
    private Integer paid;
    /**
     * 登记时间
     */
    private Date registerDate;
    /**
     * 创建时间
     */
    private LocalDateTime createTime;
    /**
     * 登记时间(查询条件)
     */
    private String registerTime;
    private String tolerance;
    /**
     * 住院号
     */
    private String hospitalNo;
    /**
     * 医保卡号
     */
    private String medicalCard;
    /**
     * 门诊号
     */
    private String outpatientNo;
    /**
     * 根据创建时间倒序
     */
    private String orderCreateTime;
}