From a9bd36fddfb774eac682d476a2d57f9b7c7ff34e Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期一, 09 九月 2024 18:03:17 +0800
Subject: [PATCH] 作业记录表
---
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/queueSaveReqVO.java | 25 ++++++++++++++++---------
1 files changed, 16 insertions(+), 9 deletions(-)
diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/queueSaveReqVO.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/queueSaveReqVO.java
index 91eedcc..bd6c39f 100644
--- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/queueSaveReqVO.java
+++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/queue/vo/queueSaveReqVO.java
@@ -5,12 +5,12 @@
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
-import java.util.*;
+import java.time.LocalDate;
@Schema(description = "绠$悊鍚庡彴 - 鎺掗槦鏂板/淇敼 Request VO")
@Data
-public class queueSaveReqVO {
+public class QueueSaveReqVO {
@Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "21320")
private Integer id;
@@ -24,14 +24,18 @@
private String patName;
@Schema(description = "鎮h�呮�у埆")
- 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 = "鎺掗槦搴忓彿涓嶈兘涓虹┖")
@@ -39,20 +43,23 @@
@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;
}
\ No newline at end of file
--
Gitblit v1.9.3