puzhibing
2025-06-03 f58d0913c810c68c550e5b12da64dbdeb0d0c1f0
ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/model/DOWNConnectRsp.java
@@ -1,6 +1,5 @@
package com.ruoyi.dataInterchange.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.netty.buffer.ByteBuf;
import lombok.Data;
@@ -26,7 +25,11 @@
    * 解析报文
    */
   public DOWNConnectRsp decode(ByteBuf byteBuf) {
      this.verifyCode = byteBuf.readByte();
      try {
         this.verifyCode = byteBuf.readByte();
      }catch (Exception e){
         e.printStackTrace();
      }
      return this;
   }
}