| | |
| | | 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; |
| | |
| | | @ToString(callSuper = true) |
| | | public class QueuePageReqVO extends PageParam { |
| | | |
| | | @Schema(description = "就诊流水号", example = "2024435") |
| | | private String episodeId; |
| | | |
| | | @Schema(description = "患者编号", example = "30473") |
| | | private String patId; |
| | | |
| | |
| | | @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 episodeId; |
| | | |
| | | @Schema(description = "患者编号", example = "30473") |
| | | @ExcelProperty("患者编号") |
| | | private String patId; |
| | | |
| | | @Schema(description = "患者姓名", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋艿") |
| | | @Schema(description = "患者姓名", example = "芋艿") |
| | | @ExcelProperty("患者姓名") |
| | | private String patName; |
| | | |
| | |
| | | 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 com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | |
| | | @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "21320") |
| | | private Integer id; |
| | | |
| | | @Schema(description = "就诊流水号", example = "2024435") |
| | | private String episodeId; |
| | | |
| | | @Schema(description = "内部预约编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "21320") |
| | | private Long appointId; |
| | | |
| | |
| | | String wardCode; |
| | | String wardDesc; |
| | | String bedNo; |
| | | /** |
| | | * 预约患者来源: 门诊 急诊 住院 体检 |
| | | */ |
| | | Integer source; |
| | | /** |
| | | * 检查申请号 |
| | | * 用于 确费 操作 |
| | | */ |
| | | String applyNo; |
| | | } |
| | |
| | | @TableId |
| | | private Integer id; |
| | | /** |
| | | * 就诊流水号 |
| | | */ |
| | | private String episodeId; |
| | | /** |
| | | * 内部预约编号 |
| | | */ |
| | | private Long appointId; |
| | |
| | | |
| | | try { |
| | | QueueSaveReqVO queueSaveReqVO = new QueueSaveReqVO(); |
| | | queueSaveReqVO.setEpisodeId( appointment.getEpisodeId() ); |
| | | queueSaveReqVO.setAppointId(appointment.getId()); |
| | | queueSaveReqVO.setPatId(appointment.getPatId()); |
| | | queueSaveReqVO.setPatName(appointment.getPatName()); |