| | |
| | | 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 String patDetails; |
| | | private PatDetails patDetails; |
| | | |
| | | @Schema(description = "预约日期") |
| | | @ExcelProperty("预约日期") |