| | |
| | | import lombok.*; |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.time.LocalDate; |
| | | import java.util.*; |
| | | |
| | | @Schema(description = "管理后台 - 叫号新增/修改 Request VO") |
| | |
| | | @Schema(description = "患者性别") |
| | | private Integer patGender; |
| | | |
| | | @Schema(description = "预约日期", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | private LocalDate bookDate; |
| | | |
| | | @Schema(description = "排队序号") |
| | | private Integer seqNum; |
| | | |
| | |
| | | @Schema(description = "插队标记") |
| | | private Integer jumpFlag; |
| | | |
| | | @Schema(description = "叫号类型") |
| | | private Integer callType; |
| | | |
| | | @Schema(description = "诊室编号", example = "30859") |
| | | private Long roomId; |
| | | |