From 6a07378488a9dd1515a6a0fdb4c1833638e6592b Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期二, 29 十月 2024 14:44:57 +0800 Subject: [PATCH] 接口对接 --- jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentConfirmReqVO.java | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentConfirmReqVO.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentConfirmReqVO.java index b68c083..b13fef2 100644 --- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentConfirmReqVO.java +++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentConfirmReqVO.java @@ -5,11 +5,18 @@ import javax.validation.constraints.NotEmpty; import javax.validation.constraints.NotNull; +import java.time.LocalDate; import java.time.LocalDateTime; @Schema(description = "绠$悊鍚庡彴 - 棰勭害纭 Request VO") @Data public class AppointmentConfirmReqVO { + + private Integer id; + + @Schema(description = "闂ㄨ瘖浣忛櫌鍙�", requiredMode = Schema.RequiredMode.REQUIRED, example = "29034") + @NotEmpty(message = "闂ㄨ瘖浣忛櫌鍙蜂笉鑳戒负绌�") + private String mzzyh; @Schema(description = "鎮h�呯紪鍙�", requiredMode = Schema.RequiredMode.REQUIRED, example = "29034") //@NotEmpty(message = "鎮h�呯紪鍙蜂笉鑳戒负绌�") @@ -29,7 +36,7 @@ @Schema(description = "棰勭害鏃ユ湡", requiredMode = Schema.RequiredMode.REQUIRED) //@NotNull(message = "棰勭害鏃ユ湡涓嶈兘涓虹┖") - private LocalDateTime bookDate; + private LocalDate bookDate; @Schema(description = "棰勭害鏃堕棿娈�", requiredMode = Schema.RequiredMode.REQUIRED) //@NotNull(message = "棰勭害鏃堕棿娈典笉鑳戒负绌�") @@ -37,6 +44,6 @@ @Schema(description = "棰勭害妫�鏌ョ被鍨�", requiredMode = Schema.RequiredMode.REQUIRED, example = "2") //@NotNull(message = "棰勭害妫�鏌ョ被鍨嬩笉鑳戒负绌�") - private Byte bookCheckType; + private Integer bookCheckType; } \ No newline at end of file -- Gitblit v1.9.3