From cc9957409fb0001f332b6847e7ff4e834f3fdba9 Mon Sep 17 00:00:00 2001
From: 张磊磊 <201175954@qq.com>
Date: 星期五, 27 十月 2023 16:00:05 +0800
Subject: [PATCH] 环境监测/烟尘

---
 hd/pipe/materialsManage/src/main/java/com/thhy/materials/modules/biz/helmet/controller/HelmetController.java |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/hd/pipe/materialsManage/src/main/java/com/thhy/materials/modules/biz/helmet/controller/HelmetController.java b/hd/pipe/materialsManage/src/main/java/com/thhy/materials/modules/biz/helmet/controller/HelmetController.java
index 28a3317..6988e97 100644
--- a/hd/pipe/materialsManage/src/main/java/com/thhy/materials/modules/biz/helmet/controller/HelmetController.java
+++ b/hd/pipe/materialsManage/src/main/java/com/thhy/materials/modules/biz/helmet/controller/HelmetController.java
@@ -2,6 +2,7 @@
 
 import com.thhy.general.common.BasicResult;
 import com.thhy.materials.modules.biz.helmet.service.HelmetService;
+import org.apache.ibatis.annotations.Mapper;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
@@ -70,6 +71,17 @@
     public BasicResult helmetReportUser(@RequestBody Map<String,Object> values){
         return helmetService.helmetReportUser(values);
     }
+    //烟尘数据
+    @PostMapping("/dataSmockList")
+    public BasicResult dataSmockList(@RequestBody Map<String,Object> values){
+        return helmetService.dataSmockList(values);
+    }
+
+    //环境监测
+    @PostMapping("/dataValuesList")
+    public BasicResult dataValuesList(@RequestBody Map<String,Object> values){
+        return helmetService.dataValuesList(values);
+    }
 
 
 }

--
Gitblit v1.9.3