| | |
| | | package cn.lihu.jh.module.ecg.controller.admin.queue.vo; |
| | | |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.patient.PatDetails; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.*; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Map; |
| | | |
| | | import com.alibaba.excel.annotation.*; |
| | | |
| | | @Schema(description = "管理后台 - 排队 Response VO") |
| | |
| | | @ExcelIgnoreUnannotated |
| | | public class QueueRespVO { |
| | | |
| | | @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "21320") |
| | | @Schema(description = "id", example = "21320") |
| | | @ExcelProperty("id") |
| | | private Integer id; |
| | | |
| | | @Schema(description = "患者编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "30473") |
| | | @Schema(description = "预约申请号", example = "2024435") |
| | | @ExcelProperty("预约申请号") |
| | | private String applyNo; |
| | | |
| | | @Schema(description = "就诊流水号", example = "2024435") |
| | | @ExcelProperty("就诊流水号") |
| | | private String episodeId; |
| | | |
| | | @Schema(description = "患者编号", example = "30473") |
| | | @ExcelProperty("患者编号") |
| | | private String patId; |
| | | |
| | | @Schema(description = "患者姓名", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋艿") |
| | | @Schema(description = "患者姓名", example = "芋艿") |
| | | @ExcelProperty("患者姓名") |
| | | private String patName; |
| | | |
| | | @Schema(description = "患者性别") |
| | | @ExcelProperty("患者性别") |
| | | private Byte patGender; |
| | | |
| | | @Schema(description = "患者详情") |
| | | @ExcelProperty("患者详情") |
| | | private PatDetails patDetails; |
| | | |
| | | @Schema(description = "预约日期") |
| | | @ExcelProperty("预约日期") |
| | |
| | | |
| | | @Schema(description = "预约检查类型", example = "1") |
| | | @ExcelProperty("预约检查类型") |
| | | private Byte bookCheckType; |
| | | private Integer bookCheckType; |
| | | |
| | | @Schema(description = "预约序号") |
| | | @ExcelProperty("预约序号") |
| | | private Integer bookSeqNum; |
| | | |
| | | @Schema(description = "排队序号", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @ExcelProperty("排队序号") |
| | | private Integer seqNum; |
| | | |
| | | @Schema(description = "10:排队中 20:候诊准备 30:就诊中 40:就诊完成 50:过号 60:过期", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @ExcelProperty("10:排队中 20:候诊准备 30:就诊中 40:就诊完成 50:过号 60:过期") |
| | | private Byte status; |
| | | @Schema(description = "VIP") |
| | | @ExcelProperty("VIP") |
| | | private Integer isVip; |
| | | |
| | | @Schema(description = "5:过号 10:排队中 15:已召回 20:候诊准备 30:就诊中 40:就诊完成 ", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @ExcelProperty("5:过号 10:排队中 15:已召回 20:候诊准备 30:就诊中 40:就诊完成 ") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "过号标记", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @ExcelProperty("过号标记") |