Browse Source

修复BUG

yangxiaokun 3 years ago
parent
commit
47c5328dd2

+ 1 - 2
src/main/java/com/zy/bms/config/mqtt/MqttConsumerCfg.java

@@ -32,8 +32,7 @@ public class MqttConsumerCfg {
     private MqttPahoClientFactory mqttClientFactory;
 
     //默认监听主题
-//    private final String[] defaultTopic = new String[]{"$regdtx2", "$dtx2/#", "$dtxlp/#"};
-    private final String[] defaultTopic = new String[]{};
+    private final String[] defaultTopic = new String[]{"$regdtx2", "$dtx2/#", "$dtxlp/#"};
 
     /**
      * MQTT 消息订阅绑定(消费者)

+ 7 - 1
src/main/java/com/zy/bms/controller/GroupController.java

@@ -46,6 +46,7 @@ public class GroupController {
     @PostMapping("save.do")
     public ServerResponse save(Group group) {
         try {
+            group.setItemId(1);
             groupService.save(group);
         } catch (Exception e) {
             return ServerResponse.warning("设备组编号重复!");
@@ -58,7 +59,12 @@ public class GroupController {
      */
     @PostMapping("update.do")
     public ServerResponse update(Group group) {
-        return ServerResponse.success(groupService.updateById(group));
+        try {
+            groupService.updateById(group);
+        } catch (Exception e) {
+            return ServerResponse.warning("设备组编号重复!");
+        }
+        return ServerResponse.success();
     }
 
 }

+ 1 - 1
src/main/java/com/zy/bms/service/IGroupService.java

@@ -10,7 +10,7 @@ import com.zy.bms.pojo.vo.GroupListWxVo;
 import java.util.List;
 
 /**
- * 项目组 服务类
+ * 设备组 服务类
  *
  * @author yangxiaokun
  * @since 2021-06-03

+ 1 - 1
src/main/resources/mapper/GroupMapper.xml

@@ -15,7 +15,7 @@
         FROM item_group t1
         LEFT JOIN item t2 ON t1.item_id = t2.id
         <where>
-            <if test="io.name != null and io.name != ''">
+            <if test="io.key != null and io.key != ''">
                 AND ( t1.code LIKE CONCAT("%",#{io.key},"%")
                 OR t1.name LIKE CONCAT("%",#{io.key},"%") )
             </if>