| | |
| | | @Data |
| | | public class AppointmentConfirmReqVO { |
| | | |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | @Schema(description = "门诊住院号", requiredMode = Schema.RequiredMode.REQUIRED, example = "29034") |
| | | @NotEmpty(message = "门诊住院号不能为空") |
| | | private String mzzyh; |
| | | @Schema(description = "就诊流水号", example = "2024546") |
| | | //@NotEmpty(message = "就诊流水号") |
| | | private String episodeId; |
| | | |
| | | @Schema(description = "患者编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "29034") |
| | | //@NotEmpty(message = "患者编号不能为空") |
| | |
| | | //@NotNull(message = "预约检查类型不能为空") |
| | | private Integer bookCheckType; |
| | | |
| | | private Integer isVip; |
| | | |
| | | } |