From 01a81beea99c0298a3b6178c7796f4c27b30c6c7 Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期二, 15 四月 2025 14:27:50 +0800 Subject: [PATCH] pat detail. 新增 appontment_id --- jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/devrent/vo/DevRentSaveReqVO.java | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/devrent/vo/DevRentSaveReqVO.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/devrent/vo/DevRentSaveReqVO.java index 9556e54..f1e7df7 100644 --- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/devrent/vo/DevRentSaveReqVO.java +++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/devrent/vo/DevRentSaveReqVO.java @@ -1,5 +1,6 @@ package cn.lihu.jh.module.ecg.controller.admin.devrent.vo; +import cn.lihu.jh.module.ecg.dal.dataobject.patient.PatDetails; import com.alibaba.excel.annotation.ExcelProperty; import io.swagger.v3.oas.annotations.media.Schema; import lombok.*; @@ -7,6 +8,7 @@ import javax.validation.constraints.NotEmpty; import java.time.LocalDateTime; +import java.util.Map; @Schema(description = "绠$悊鍚庡彴 - 瑁呮満鎷嗘満鏂板/淇敼 Request VO") @Data @@ -14,6 +16,12 @@ @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "26525") private Long id; + + @Schema(description = "棰勭害鐢宠鍙�", example = "2024435") + private String applyNo; + + @Schema(description = "灏辫瘖娴佹按鍙�", example = "2024546") + private String episodeId; @Schema(description = "璁惧缂栧彿", requiredMode = Schema.RequiredMode.REQUIRED, example = "3986") @NotEmpty(message = "璁惧缂栧彿涓嶈兘涓虹┖") @@ -26,6 +34,9 @@ @Schema(description = "鎮h�呭悕绉�", requiredMode = Schema.RequiredMode.REQUIRED, example = "鑺嬭壙") @NotEmpty(message = "鎮h�呭悕绉颁笉鑳戒负绌�") private String patName; + + @Schema(description = "妫�鏌ョ被鍨�", requiredMode = Schema.RequiredMode.REQUIRED, example = "鑺嬭壙") + private Integer checkType; @Schema(description = "瑁呮満鏃堕棿") private LocalDateTime rentTime; @@ -59,4 +70,7 @@ @Schema(description = "璇婂簥缂栧彿") String bedNo; + + @Schema(description = "鎮h�呰鎯�") + PatDetails patDetails; } -- Gitblit v1.9.3