| | |
| | | package cn.lihu.jh.module.ecg.controller.admin.queue.vo; |
| | | |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.patient.PatDetails; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.*; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import cn.lihu.jh.framework.common.pojo.PageParam; |
| | |
| | | |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Map; |
| | | |
| | | import static cn.lihu.jh.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
| | | |
| | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @ToString(callSuper = true) |
| | | public class QueuePageReqVO extends PageParam { |
| | | |
| | | @Schema(description = "就诊流水号", example = "2024435") |
| | | private String episodeId; |
| | | |
| | | @Schema(description = "患者编号", example = "30473") |
| | | private String patId; |
| | |
| | | private Boolean patGender; |
| | | |
| | | @Schema(description = "患者详情") |
| | | private String patDetails; |
| | | private PatDetails patDetails; |
| | | |
| | | @Schema(description = "预约日期") |
| | | private LocalDate bookDate; |
| | |
| | | @Schema(description = "预约检查类型", example = "1") |
| | | private Integer bookCheckType; |
| | | |
| | | @Schema(description = "预约序号") |
| | | private Integer bookSeqNum; |
| | | |
| | | @Schema(description = "排队序号") |
| | | private Integer seqNum; |
| | | |
| | | @Schema(description = "VIP") |
| | | private Integer isVip; |
| | | |
| | | @Schema(description = "5:过号 10:排队中 15:已召回 20:候诊准备 30:就诊中 40:就诊完成 ", example = "1") |
| | | private Integer status; |
| | | |