From 135a322f44708b1187d37ea4b6859b5d82113e89 Mon Sep 17 00:00:00 2001
From: kongzy <kongzy>
Date: 星期三, 14 八月 2024 11:00:30 +0800
Subject: [PATCH] update gitignore

---
 src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/PreventReportConfigServiceImpl.java |   86 +++++++++++++++++++++---------------------
 1 files changed, 43 insertions(+), 43 deletions(-)

diff --git a/src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/PreventReportConfigServiceImpl.java b/src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/PreventReportConfigServiceImpl.java
index 0c6dc49..f3b8103 100644
--- a/src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/PreventReportConfigServiceImpl.java
+++ b/src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/PreventReportConfigServiceImpl.java
@@ -1,43 +1,43 @@
-package com.ruoyi.doublePrevention.service.baseService.impl;
-
-import com.ruoyi.doublePrevention.entity.PreventReportConfig;
-import com.ruoyi.doublePrevention.repository.PreventReportConfigRepository;
-import com.ruoyi.doublePrevention.repository.param.PreventReportConfigUpdateParams;
-import com.ruoyi.doublePrevention.service.baseService.PreventReportConfigService;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.stereotype.Service;
-
-import java.util.List;
-
-@Service("PreventReportConfigService")
-public class PreventReportConfigServiceImpl implements PreventReportConfigService {
-
-    @Autowired
-    private PreventReportConfigRepository preventReportConfigRepository;
-
-    /**
-     * 数据上报配置-查询
-     */
-    @Override
-    public List<PreventReportConfig> ListReportConfigs() {
-        return preventReportConfigRepository.ListReportConfigs();
-    }
-
-    /**
-     * 数据上报配置-修改
-     */
-    @Override
-    public int updateReportConfig(PreventReportConfigUpdateParams updateParams) {
-        return preventReportConfigRepository.updateReportConfig(updateParams);
-    }
-
-    /**
-     * 数据上报配置-按照id查询
-     */
-    @Override
-    public PreventReportConfig getReportConfigById(int Id) {
-        return preventReportConfigRepository.selectById(Id);
-    }
-
-
-}
+package com.ruoyi.doublePrevention.service.baseService.impl;
+
+import com.ruoyi.doublePrevention.entity.PreventReportConfig;
+import com.ruoyi.doublePrevention.repository.PreventReportConfigRepository;
+import com.ruoyi.doublePrevention.repository.param.PreventReportConfigUpdateParams;
+import com.ruoyi.doublePrevention.service.baseService.PreventReportConfigService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.List;
+
+@Service("PreventReportConfigService")
+public class PreventReportConfigServiceImpl implements PreventReportConfigService {
+
+    @Autowired
+    private PreventReportConfigRepository preventReportConfigRepository;
+
+    /**
+     * 数据上报配置-查询
+     */
+    @Override
+    public List<PreventReportConfig> ListReportConfigs() {
+        return preventReportConfigRepository.ListReportConfigs();
+    }
+
+    /**
+     * 数据上报配置-修改
+     */
+    @Override
+    public int updateReportConfig(PreventReportConfigUpdateParams updateParams) {
+        return preventReportConfigRepository.updateReportConfig(updateParams);
+    }
+
+    /**
+     * 数据上报配置-按照id查询
+     */
+    @Override
+    public PreventReportConfig getReportConfigById(int Id) {
+        return preventReportConfigRepository.selectById(Id);
+    }
+
+
+}

--
Gitblit v1.9.2