Pu Zhibing
2025-03-07 297512bc22b179b7038d96a1ff033eceaed38c4b
ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/model/DOWNConnectRsp.java
@@ -1,6 +1,7 @@
package com.ruoyi.dataInterchange.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.netty.buffer.ByteBuf;
import lombok.Data;
/**
@@ -17,6 +18,15 @@
    * 0x02:资源紧张,稍后再连接(已经占用)
    * 0xFF:其他
    */
   @JsonProperty("VERIFY_CODE")
   private String verifyCode;
   private int verifyCode;
   /**
    * 解析报文
    */
   public DOWNConnectRsp decode(ByteBuf byteBuf) {
      this.verifyCode = byteBuf.readByte();
      return this;
   }
}