From 971bd30b611531464d7a878352e453ab4511f93f Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期四, 19 六月 2025 19:36:24 +0800 Subject: [PATCH] 代码提交 --- jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentSaveReqVO.java | 49 ++++++++++++++++++++++++++++++++++++++++++------- 1 files changed, 42 insertions(+), 7 deletions(-) diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentSaveReqVO.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentSaveReqVO.java index 417ecc8..fffaa04 100644 --- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentSaveReqVO.java +++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/controller/admin/appointment/vo/AppointmentSaveReqVO.java @@ -1,5 +1,7 @@ package cn.lihu.jh.module.ecg.controller.admin.appointment.vo; +import com.alibaba.excel.annotation.ExcelProperty; +import com.baomidou.mybatisplus.annotation.TableField; import io.swagger.v3.oas.annotations.media.Schema; import lombok.*; @@ -12,7 +14,19 @@ @Data public class AppointmentSaveReqVO { - private Integer id; + private Long id; + + @Schema(description = "棰勭害鐢宠鍙�", example = "2024435") + private String applyNo; + + @Schema(description = "灏辫瘖娴佹按鍙�", example = "2024546") + //@NotEmpty(message = "灏辫瘖娴佹按鍙�") + private String episodeId; + + /** + * 鎮h�呮潵婧愮被鍨� 01闂瘖 02鎬ヨ瘖 03浣撴 04浣忛櫌 + */ + private Integer patSrc; @Schema(description = "鎮h�呯紪鍙�", requiredMode = Schema.RequiredMode.REQUIRED, example = "29034") @NotEmpty(message = "鎮h�呯紪鍙蜂笉鑳戒负绌�") @@ -56,10 +70,6 @@ @Schema(description = "搴婂彿") private String patBedNo; - @Schema(description = "棰勭害缂栧彿", requiredMode = Schema.RequiredMode.REQUIRED, example = "27849") - //@NotEmpty(message = "棰勭害缂栧彿涓嶈兘涓虹┖") - private String bookId; - @Schema(description = "棰勭害鏃ユ湡", requiredMode = Schema.RequiredMode.REQUIRED) @NotNull(message = "棰勭害鏃ユ湡涓嶈兘涓虹┖") private LocalDateTime bookDate; @@ -74,6 +84,31 @@ @Schema(description = "棰勭害妫�鏌ョ被鍨�", requiredMode = Schema.RequiredMode.REQUIRED, example = "2") @NotNull(message = "棰勭害妫�鏌ョ被鍨嬩笉鑳戒负绌�") - private Byte bookCheckType; + private Integer bookCheckType; -} \ No newline at end of file + @Schema(description = "宸蹭粯娆�") + private Integer paid; + + // @TableField(exist = false) + private String status; + + /** + * 鑰愯嵂鎬э細 鏄惁澶氳��1浠h〃鏄紝0浠h〃涓嶆槸 + */ + private String tolerance; + + /** + * 浣忛櫌鍙� + */ + private String hospitalNo; + + /** + * 鍖讳繚鍗″彿 + */ + private String medicalCard; + + /** + * 闂ㄨ瘖鍙� + */ + private String outpatientNo; +} -- Gitblit v1.9.3