From 182b0785c628e6b1134d51985a692d0df7a8fb85 Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期二, 16 七月 2024 21:17:22 +0800
Subject: [PATCH] 区间改为&

---
 performance-server/src/main/resources/mapper/AuxiliaryOriginalHoursMapper.xml |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/performance-server/src/main/resources/mapper/AuxiliaryOriginalHoursMapper.xml b/performance-server/src/main/resources/mapper/AuxiliaryOriginalHoursMapper.xml
index 110813c..1b83759 100644
--- a/performance-server/src/main/resources/mapper/AuxiliaryOriginalHoursMapper.xml
+++ b/performance-server/src/main/resources/mapper/AuxiliaryOriginalHoursMapper.xml
@@ -6,7 +6,7 @@
         from (select C.name, C.month, C.manHours + D.manHours as total
         from (select A.name,
         A.month,
-        sum(A.manHour) as manHours
+        FORMAT(SUM(manHour), 2) as manHours
         from (
         select user.name,
         case
@@ -35,7 +35,7 @@
         from (
         select user.name,
         date_time as month,
-        sum(output_work_time) as manHours
+        FORMAT(SUM(output_work_time), 2) as manHours
         from auxiliary_output_working_hours aowh
         left join user on user.id = aowh.`check`
         left join department_lims dl on depart_lims_id = dl.id

--
Gitblit v1.9.3