| | |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Schema(description = "管理后台 - 预约确认 Request VO") |
| | | @Data |
| | | public class AppointmentConfirmReqVO { |
| | | |
| | | private Integer id; |
| | | |
| | | @Schema(description = "门诊住院号", requiredMode = Schema.RequiredMode.REQUIRED, example = "29034") |
| | | @NotEmpty(message = "门诊住院号不能为空") |
| | | private String mzzyh; |
| | | |
| | | @Schema(description = "患者编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "29034") |
| | | //@NotEmpty(message = "患者编号不能为空") |
| | |
| | | |
| | | @Schema(description = "预约日期", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | //@NotNull(message = "预约日期不能为空") |
| | | private LocalDateTime bookDate; |
| | | private LocalDate bookDate; |
| | | |
| | | @Schema(description = "预约时间段", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | //@NotNull(message = "预约时间段不能为空") |
| | |
| | | |
| | | @Schema(description = "预约检查类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "2") |
| | | //@NotNull(message = "预约检查类型不能为空") |
| | | private Byte bookCheckType; |
| | | private Integer bookCheckType; |
| | | |
| | | } |