From 25a0ba7b2706db3c5ee546da3e0e7c909777b890 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期三, 29 七月 2026 15:37:32 +0800
Subject: [PATCH] 1,患者过滤状态修改(之前只支持发送之前的过滤,现在支持发送之后的过滤,如果任务发送后,外链不能再打开) 2.在出入院表新增入院申请单字段 3.采集入院数据时,同时要采集importanceFlagCode emergencyLevelCode 4.外链的发送,也要查询子任务状态,如果是不执行,也不能再发送
---
smartor/src/main/java/com/smartor/service/IPatSatisfactionService.java | 47 +++++++++++++++++++++++++++++++++++++++--------
1 files changed, 39 insertions(+), 8 deletions(-)
diff --git a/smartor/src/main/java/com/smartor/service/IPatSatisfactionService.java b/smartor/src/main/java/com/smartor/service/IPatSatisfactionService.java
index cced720..413a9c6 100644
--- a/smartor/src/main/java/com/smartor/service/IPatSatisfactionService.java
+++ b/smartor/src/main/java/com/smartor/service/IPatSatisfactionService.java
@@ -1,19 +1,23 @@
package com.smartor.service;
import java.util.List;
+import java.util.Map;
+
import com.smartor.domain.PatSatisfaction;
+import com.smartor.domain.VO.PatSatisfactionReqVO;
+import com.smartor.domain.VO.PatSatisfactionResVO;
/**
* 鎮h�呮弧鎰忓害Service鎺ュ彛
- *
+ *
* @author lihu
* @date 2025-06-30
*/
-public interface IPatSatisfactionService
+public interface IPatSatisfactionService
{
/**
* 鏌ヨ鎮h�呮弧鎰忓害
- *
+ *
* @param id 鎮h�呮弧鎰忓害涓婚敭
* @return 鎮h�呮弧鎰忓害
*/
@@ -21,7 +25,7 @@
/**
* 鏌ヨ鎮h�呮弧鎰忓害鍒楄〃
- *
+ *
* @param patSatisfaction 鎮h�呮弧鎰忓害
* @return 鎮h�呮弧鎰忓害闆嗗悎
*/
@@ -29,7 +33,7 @@
/**
* 鏂板鎮h�呮弧鎰忓害
- *
+ *
* @param patSatisfaction 鎮h�呮弧鎰忓害
* @return 缁撴灉
*/
@@ -37,7 +41,7 @@
/**
* 淇敼鎮h�呮弧鎰忓害
- *
+ *
* @param patSatisfaction 鎮h�呮弧鎰忓害
* @return 缁撴灉
*/
@@ -45,7 +49,7 @@
/**
* 鎵归噺鍒犻櫎鎮h�呮弧鎰忓害
- *
+ *
* @param ids 闇�瑕佸垹闄ょ殑鎮h�呮弧鎰忓害涓婚敭闆嗗悎
* @return 缁撴灉
*/
@@ -53,9 +57,36 @@
/**
* 鍒犻櫎鎮h�呮弧鎰忓害淇℃伅
- *
+ *
* @param id 鎮h�呮弧鎰忓害涓婚敭
* @return 缁撴灉
*/
public int deletePatSatisfactionById(Long id);
+
+ /**
+ * 鎮h�呮弧鎰忓害缁熻
+ *
+ * @param patSatisfactionReqVO 鎮h�呮弧鎰忓害缁熻鏉′欢
+ * @return 鎮h�呮弧鎰忓害缁熻缁撴灉
+ */
+ public PatSatisfactionResVO statistics( PatSatisfactionReqVO patSatisfactionReqVO);
+
+ /**
+ * 鎮h�呮弧鎰忓害缁熻锛堢淮搴︼級
+ *
+ * @param patSatisfactionReqVO 鎮h�呮弧鎰忓害缁熻鏉′欢
+ * @return 鎮h�呮弧鎰忓害缁熻缁撴灉
+ */
+ public PatSatisfactionResVO statisticsByDimension( PatSatisfactionReqVO patSatisfactionReqVO);
+
+
+ /**
+ * 鎮h�呮弧鎰忓害鏌辩姸鍥句俊鎭�
+ *
+ * @param patSatisfactionReqVO 鎮h�呮弧鎰忓害鏌辩姸鍥句俊鎭�
+ * @return 鎮h�呮弧鎰忓害鏌辩姸鍥句俊鎭�
+ */
+ public Map<String, Object> satisfactionGraph(PatSatisfactionReqVO patSatisfactionReqVO);
+
+ public Map<String, Object> satisfactionGraphDimension(PatSatisfactionReqVO patSatisfactionReqVO);
}
--
Gitblit v1.9.3