| | |
| | | package cn.lihu.jh.module.ecg.controller.admin.queue.vo; |
| | | |
| | | import lombok.*; |
| | | import java.util.*; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import cn.lihu.jh.framework.common.pojo.PageParam; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @ToString(callSuper = true) |
| | | public class queuePageReqVO extends PageParam { |
| | | public class QueuePageReqVO extends PageParam { |
| | | |
| | | @Schema(description = "患者编号", example = "30473") |
| | | private String patId; |
| | |
| | | private Integer seqNum; |
| | | |
| | | @Schema(description = "10:排队中 20:候诊准备 30:就诊中 40:就诊完成 50:过号 60:过期", example = "1") |
| | | private Boolean status; |
| | | private Byte status; |
| | | |
| | | @Schema(description = "过号标记") |
| | | private Boolean passed; |