From 1a38082352708692a339a8b43db79bc349be07f1 Mon Sep 17 00:00:00 2001
From: 陈昶聿 <chychen@nbjetron.com>
Date: 星期四, 10 九月 2026 17:04:33 +0800
Subject: [PATCH] 【景宁】批量新增患者满意度调整
---
smartor/src/main/java/com/smartor/service/IPatSatisfactionService.java | 55 +++++++++++++++++++++++++++++++++++++++++++++++--------
1 files changed, 47 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..9282b42 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,15 +33,23 @@
/**
* 鏂板鎮h�呮弧鎰忓害
- *
+ *
* @param patSatisfaction 鎮h�呮弧鎰忓害
* @return 缁撴灉
*/
public int insertPatSatisfaction(PatSatisfaction patSatisfaction);
/**
+ * 鎵归噺鏂板鎮h�呮弧鎰忓害
+ *
+ * @param patSatisfactions 鎮h�呮弧鎰忓害
+ * @return 缁撴灉
+ */
+ public int batchInsert(List<PatSatisfaction> patSatisfactions);
+
+ /**
* 淇敼鎮h�呮弧鎰忓害
- *
+ *
* @param patSatisfaction 鎮h�呮弧鎰忓害
* @return 缁撴灉
*/
@@ -45,7 +57,7 @@
/**
* 鎵归噺鍒犻櫎鎮h�呮弧鎰忓害
- *
+ *
* @param ids 闇�瑕佸垹闄ょ殑鎮h�呮弧鎰忓害涓婚敭闆嗗悎
* @return 缁撴灉
*/
@@ -53,9 +65,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