From dd6e29aba4f614f236cf60aca4aa972a51a8dfb5 Mon Sep 17 00:00:00 2001
From: wuzeyu <1223318623@qq.com>
Date: 星期一, 30 十二月 2024 11:54:43 +0800
Subject: [PATCH] Merge branch 'master' of http://8.140.179.55:20000/r/pipIrr-SV

---
 pipIrr-platform/pipIrr-web/pipIrr-web-temp/src/main/java/com/dy/pipIrrTemp/statistics/StSomeCtrl.java |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 46 insertions(+), 0 deletions(-)

diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-temp/src/main/java/com/dy/pipIrrTemp/statistics/StSomeCtrl.java b/pipIrr-platform/pipIrr-web/pipIrr-web-temp/src/main/java/com/dy/pipIrrTemp/statistics/StSomeCtrl.java
new file mode 100644
index 0000000..790a49d
--- /dev/null
+++ b/pipIrr-platform/pipIrr-web/pipIrr-web-temp/src/main/java/com/dy/pipIrrTemp/statistics/StSomeCtrl.java
@@ -0,0 +1,46 @@
+package com.dy.pipIrrTemp.statistics;
+
+import com.dy.common.aop.SsoAop;
+import com.dy.common.webUtil.BaseResponse;
+import com.dy.common.webUtil.BaseResponseUtils;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+/**
+ * @Author: liurunyu
+ * @Date: 2024/12/28 13:05
+ * @Description
+ */
+@Slf4j
+@RestController
+@RequestMapping(path = "stSome")
+public class StSomeCtrl {
+
+    private StClientAmountSv stClientAmountSv;
+
+    @Autowired
+    private void setSv(StClientAmountSv sv) {
+        this.stClientAmountSv = sv;
+    }
+
+    ///////////////////////////////////////////
+    //
+    // 鍐滄埛鐩稿叧鍙栨按閲�
+    //
+    ///////////////////////////////////////////
+    /**
+     * 杞瓨鍐滄埛鏃ュ彇姘撮噺锛岀敱绾靛瀷鏀逛负妯瀷
+     * @return
+     */
+    @GetMapping(path = "transSaveClientAmountDay")
+    @SsoAop()
+    public BaseResponse<Boolean> transSaveClientAmountDay() throws Exception{
+        this.stClientAmountSv.deleteAllStClientAmountDay();
+        this.stClientAmountSv.transSaveClientAmountDay();
+        return BaseResponseUtils.buildSuccess(true);
+    }
+
+}

--
Gitblit v1.8.0