From af4b8add9d103889472a75973847871b7dcdf3c8 Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期一, 08 九月 2025 14:23:36 +0800 Subject: [PATCH] 0908 --- ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/model/DOWNConnectRsp.java | 19 ++++++++++++++++--- 1 files changed, 16 insertions(+), 3 deletions(-) diff --git a/ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/model/DOWNConnectRsp.java b/ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/model/DOWNConnectRsp.java index 459ced9..e5f605f 100644 --- a/ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/model/DOWNConnectRsp.java +++ b/ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/model/DOWNConnectRsp.java @@ -1,6 +1,6 @@ package com.ruoyi.dataInterchange.model; -import com.fasterxml.jackson.annotation.JsonProperty; +import io.netty.buffer.ByteBuf; import lombok.Data; /** @@ -17,6 +17,19 @@ * 0x02:资源紧张,稍后再连接(已经占用) * 0xFF:其他 */ - @JsonProperty("VERIFY_CODE") - private String verifyCode; + private int verifyCode; + + + + /** + * 解析报文 + */ + public DOWNConnectRsp decode(ByteBuf byteBuf) { + try { + this.verifyCode = byteBuf.readByte(); + }catch (Exception e){ + e.printStackTrace(); + } + return this; + } } -- Gitblit v1.7.1