From 18f2eb72590ce5ff79693eb8a27188a499bbd114 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期二, 29 十月 2024 16:12:53 +0800
Subject: [PATCH] appointment table key Integer -> Long

---
 jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/appointment/AppointmentService.java |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/appointment/AppointmentService.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/appointment/AppointmentService.java
index bc245a7..0e0e198 100644
--- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/appointment/AppointmentService.java
+++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/appointment/AppointmentService.java
@@ -4,6 +4,7 @@
 import cn.lihu.jh.module.ecg.dal.dataobject.appointment.AppointmentDO;
 import cn.lihu.jh.framework.common.pojo.PageResult;
 import cn.lihu.jh.framework.common.pojo.PageParam;
+import cn.lihu.jh.module.ecg.feign.dto.AppointmentExternal;
 
 import javax.validation.Valid;
 
@@ -20,7 +21,7 @@
      * @param createReqVO 鍒涘缓淇℃伅
      * @return 缂栧彿
      */
-    Integer createAppointment(@Valid AppointmentSaveReqVO createReqVO);
+    Long createAppointment(@Valid AppointmentSaveReqVO createReqVO);
 
     /**
      * 鏇存柊棰勭害
@@ -34,7 +35,7 @@
      *
      * @param id 缂栧彿
      */
-    void deleteAppointment(Integer id);
+    void deleteAppointment(Long id);
 
     /**
      * 鑾峰緱棰勭害
@@ -42,7 +43,7 @@
      * @param id 缂栧彿
      * @return 棰勭害
      */
-    AppointmentDO getAppointment(Integer id);
+    AppointmentDO getAppointment(Long id);
 
     /**
      * 鑾峰緱棰勭害
@@ -60,4 +61,7 @@
      */
     PageResult<AppointmentDO> getAppointmentPage(AppointmentPageReqVO pageReqVO);
 
-}
\ No newline at end of file
+    AppointmentDO getAppointmentExtermal(String mzzyh);
+
+    String appoitmentConfirm(AppointmentConfirmReqVO appointmentConfirmReqVO);
+}

--
Gitblit v1.9.3