| | |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.util.*; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | |
| | | |
| | | @Schema(description = "管理后台 - 排队新增/修改 Request VO") |
| | | @Data |
| | | public class queueSaveReqVO { |
| | | public class QueueSaveReqVO { |
| | | |
| | | @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "21320") |
| | | private Integer id; |
| | |
| | | private String patName; |
| | | |
| | | @Schema(description = "患者性别") |
| | | private Boolean patGender; |
| | | private Byte patGender; |
| | | |
| | | @Schema(description = "预约日期", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotNull(message = "预约日期不能为空") |
| | | private LocalDate bookDate; |
| | | |
| | | @Schema(description = "预约时间段", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotNull(message = "预约时间段不能为空") |
| | | private Integer bookTimeslot; |
| | | |
| | | @Schema(description = "预约检查类型", example = "1") |
| | | private Boolean bookCheckType; |
| | | private Byte bookCheckType; |
| | | |
| | | @Schema(description = "排队序号", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotNull(message = "排队序号不能为空") |
| | |
| | | |
| | | @Schema(description = "10:排队中 20:候诊准备 30:就诊中 40:就诊完成 50:过号 60:过期", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @NotNull(message = "10:排队中 20:候诊准备 30:就诊中 40:就诊完成 50:过号 60:过期不能为空") |
| | | private Boolean status; |
| | | private Byte status; |
| | | |
| | | @Schema(description = "过号标记", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotNull(message = "过号标记不能为空") |
| | | private Boolean passed; |
| | | private Byte passed; |
| | | |
| | | @Schema(description = "预约过期标记", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotNull(message = "预约过期标记不能为空") |
| | | private Boolean expired; |
| | | private Byte expired; |
| | | |
| | | @Schema(description = "诊室编号") |
| | | private String roomNum; |
| | | private Long roomId; |
| | | |
| | | @Schema(description = "诊室名称") |
| | | private String roomName; |
| | | |
| | | @Schema(description = "诊疗床编号") |
| | | private String bedNum; |
| | | private String bedNo; |
| | | |
| | | } |