eight
2024-08-23 3e696d457f13338a7eb5ad0935a7d2c7affcf605
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/queueSaveReqVO.java
@@ -5,6 +5,8 @@
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import java.time.LocalDate;
import java.time.LocalDateTime;
@Schema(description = "管理后台 - 排队新增/修改 Request VO")
@@ -24,6 +26,10 @@
    @Schema(description = "患者性别")
    private Byte patGender;
    @Schema(description = "预约日期", requiredMode = Schema.RequiredMode.REQUIRED)
    @NotNull(message = "预约日期不能为空")
    private LocalDate bookDate;
    @Schema(description = "预约时间段", requiredMode = Schema.RequiredMode.REQUIRED)
    @NotNull(message = "预约时间段不能为空")
@@ -49,9 +55,12 @@
    private Byte expired;
    @Schema(description = "诊室编号")
    private String roomNum;
    private Long roomId;
    @Schema(description = "诊室名称")
    private String roomName;
    @Schema(description = "诊疗床编号")
    private String bedNum;
    private String bedNo;
}