From 7d55b601b8ec846e9d48ce31de1c5c6930d6dee0 Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期二, 19 八月 2025 17:24:35 +0800
Subject: [PATCH] 1、修改等待中间件返回结果超时时间为10秒; 2、修改向水肥机下发命令相关逻辑; 3、修改水肥机回复命令结果处理逻辑; 4、去除前端webSocket关闭产生异常日志记录。
---
pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/mqtt/MqttLastCtrl.java | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/mqtt/MqttLastCtrl.java b/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/mqtt/MqttLastCtrl.java
index 93a8ed6..5966934 100644
--- a/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/mqtt/MqttLastCtrl.java
+++ b/pipIrr-platform/pipIrr-web/pipIrr-web-wechat/src/main/java/com/dy/pipIrrWechat/mqtt/MqttLastCtrl.java
@@ -1,6 +1,5 @@
package com.dy.pipIrrWechat.mqtt;
-import com.dy.common.aop.SsoAop;
import com.dy.common.webUtil.BaseResponse;
import com.dy.common.webUtil.BaseResponseUtils;
import com.dy.pipIrrGlobal.voRm.VoManure;
@@ -41,7 +40,6 @@
* @return
*/
@GetMapping(path = "oneManureLast")
- @SsoAop()
public BaseResponse<VoManureLast> oneManureLast(Long manureId){
try {
if(manureId == null){
@@ -66,7 +64,6 @@
* @return
*/
@GetMapping(path = "oneSoilLast")
- @SsoAop()
public BaseResponse<VoSoil> oneSoilLast(Long soilId){
try {
if(soilId == null){
@@ -90,7 +87,6 @@
* @return
*/
@GetMapping(path = "oneWeatherLast")
- @SsoAop()
public BaseResponse<VoWeather> oneWeatherLast(Long weatherId){
try {
if(weatherId == null){
--
Gitblit v1.8.0