From 5648a998a4bdb6c12672665bb6974920f11ba3e5 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期一, 02 九月 2024 12:09:55 +0800
Subject: [PATCH] 用户表增加unitId字段,新建运维单位账号绑定unitId

---
 ycl-server/src/main/resources/mapper/zgyw/CalculateReportMapper.xml |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/ycl-server/src/main/resources/mapper/zgyw/CalculateReportMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/CalculateReportMapper.xml
index 21c56ba..85e8d77 100644
--- a/ycl-server/src/main/resources/mapper/zgyw/CalculateReportMapper.xml
+++ b/ycl-server/src/main/resources/mapper/zgyw/CalculateReportMapper.xml
@@ -20,6 +20,7 @@
 
     <select id="page" resultMap="BaseResultMap">
         SELECT
+            tcr.contract_id,
             tyu.unit_name,
             tc.name,
             tcr.id,
@@ -99,4 +100,15 @@
         WHERE tcr.id = #{id}
     </select>
 
+    <select id="exportData" resultType="com.ycl.platform.domain.excel.CalculateExport">
+        SELECT
+            a.rule_name,
+            COUNT(b.id) AS num,
+            IFNULL(-SUM(score), 0) AS score
+        FROM t_calculate_rule a
+        LEFT JOIN t_contract_score b ON b.rule_id = a.id AND auditing_status = 'PASS' AND b.deleted = 0
+        WHERE a.contract_id = #{contractId} AND a.deleted = 0
+        GROUP BY a.rule_name
+    </select>
+
 </mapper>

--
Gitblit v1.8.0