From 4374d41d1fcf28cbff21bc8b31efbbdbc30a893a Mon Sep 17 00:00:00 2001
From: baoshiwei <baoshiwei@shlanbao.cn>
Date: 星期四, 17 七月 2025 08:43:35 +0800
Subject: [PATCH] feat(dry): 添加获取所有机台接口并优化缓存

---
 jeecg-module-dry/jeecg-module-dry-biz/src/main/java/org/jeecg/modules/dry/controller/DryRealTimeDataController.java |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/jeecg-module-dry/jeecg-module-dry-biz/src/main/java/org/jeecg/modules/dry/controller/DryRealTimeDataController.java b/jeecg-module-dry/jeecg-module-dry-biz/src/main/java/org/jeecg/modules/dry/controller/DryRealTimeDataController.java
index 2ed14ac..a875b57 100644
--- a/jeecg-module-dry/jeecg-module-dry-biz/src/main/java/org/jeecg/modules/dry/controller/DryRealTimeDataController.java
+++ b/jeecg-module-dry/jeecg-module-dry-biz/src/main/java/org/jeecg/modules/dry/controller/DryRealTimeDataController.java
@@ -102,6 +102,31 @@
         return dryRealTimeDataService.realTimeDataHandle(realTimeDataVo);
     }
 
+    @ApiOperation(value="鎺ユ敹瀹炴椂鏁版嵁Json", notes="璁惧瀹炴椂鏁版嵁涓婁紶")
+    @PostMapping("/sendRealTimeDataJson2")
+    public Result<?> realTimeDataJson2(@RequestBody RealTimeDataParentVo realTimeDataParentVo)  {
+        try {
+            if (mqttConfig.isEnable() && "user".equals(mqttConfig.getRole())){
+                MqttMessage mqttMessage = new MqttMessage();
+                mqttMessage.setQos(0);
+                mqttMessage.setPayload(JSONObject.toJSONString(realTimeDataParentVo).getBytes());
+                mqttUtil.getMqttClient().publish(MqttConstant.TENANT_UP_PREFIX_REALTIME_DATA,mqttMessage);
+                //澶勭悊鏁呴殰淇℃伅
+                dryRealTimeDataService.fitFaultRecord(realTimeDataParentVo);
+            }
+
+            if ("user".equals(mqttConfig.getRole()) && realTimeDataParentVo.getFault() != null){
+                //澶勭悊鏁呴殰淇℃伅
+                dryRealTimeDataService.fitFaultRecord(realTimeDataParentVo);
+            }
+
+        } catch (MqttException e) {
+            e.printStackTrace();
+        }
+
+        return dryRealTimeDataService.realTimeDataHandle(realTimeDataParentVo);
+    }
+
 
 
     @ApiOperation(value="鑾峰彇璁惧瀹炴椂鏁版嵁", notes="閫氳繃绉熸埛ID鍜岃澶囩紪鐮佽幏鍙栧疄鏃舵暟鎹�")
@@ -117,6 +142,14 @@
     }
 
 
+    @ApiOperation(value="鑾峰彇鎵�鏈夋満鍙�", notes="閫氳繃绉熸埛ID鑾峰彇鎵�鏈夋満鍙版暟鎹�")
+    @GetMapping("/queryAllEqps")
+    public Result<?> queryAllEqps(DryEquipment equipment) {
+        List<DryEquipment> dryEquipments = dryEquipmentService.queryEqusByTenantId(equipment);
+        return  Result.OK(dryEquipments);
+    }
+
+
     /**
      * 1001 椋庣鍗�     1002 椋庣闄�
      * 1003 婊氱瓛鍗�     1004 婊氱瓛闄�

--
Gitblit v1.9.3