| | |
| | | |
| | | private Long id; |
| | | |
| | | @Schema(description = "就诊流水号", example = "2024546") |
| | | //@NotEmpty(message = "就诊流水号") |
| | | private String episodeId; |
| | | |
| | | @Schema(description = "患者编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "29034") |
| | | //@NotEmpty(message = "患者编号不能为空") |
| | | private String patId; |
| | |
| | | @ToString(callSuper = true) |
| | | public class AppointmentPageReqVO extends PageParam { |
| | | |
| | | @Schema(description = "就诊流水号", example = "2024546") |
| | | private String episodeId; |
| | | |
| | | @Schema(description = "患者编号", example = "29034") |
| | | private String patId; |
| | | |
| | |
| | | |
| | | private Long id; |
| | | |
| | | @Schema(description = "就诊流水号", example = "2024546") |
| | | @ExcelProperty("就诊流水号") |
| | | private String episodeId; |
| | | |
| | | @Schema(description = "患者编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "29034") |
| | | @ExcelProperty("患者编号") |
| | | private String patId; |
| | |
| | | |
| | | private Long id; |
| | | |
| | | @Schema(description = "就诊流水号", example = "2024546") |
| | | //@NotEmpty(message = "就诊流水号") |
| | | private String episodeId; |
| | | |
| | | @Schema(description = "患者编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "29034") |
| | | @NotEmpty(message = "患者编号不能为空") |
| | | private String patId; |