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