| | |
| | | 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; |
| | | |