| | |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | |
| | | |
| | | @Schema(description = "管理后台 - 排队新增/修改 Request VO") |
| | |
| | | |
| | | @Schema(description = "患者性别") |
| | | private Byte patGender; |
| | | |
| | | @Schema(description = "预约日期", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotNull(message = "预约日期不能为空") |
| | | private LocalDate bookDate; |
| | | |
| | | @Schema(description = "预约时间段", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotNull(message = "预约时间段不能为空") |
| | |
| | | private Byte expired; |
| | | |
| | | @Schema(description = "诊室编号") |
| | | private String roomNum; |
| | | private Long roomId; |
| | | |
| | | @Schema(description = "诊室名称") |
| | | private String roomName; |
| | | |
| | | @Schema(description = "诊疗床编号") |
| | | private String bedNum; |
| | | private String bedNo; |
| | | |
| | | } |