1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| package com.ruoyi.dataInterchange.model;
|
| import com.ruoyi.dataInterchange.util.jtt809.common.Jtt809Util;
| import io.netty.buffer.ByteBuf;
| import lombok.Data;
|
| /**
| * 主链路注销请求
| *
| * @author zhibing.pu
| * @Date 2025/2/24 10:53
| */
| @Data
| public class UPDisconnectReq {
| /**
| * 用户名
| */
| private int userId;
| /**
| * 密码
| */
| private String password;
|
|
| /**
| * 解析报文
| */
| public UPDisconnectReq decode(ByteBuf byteBuf) {
| this.userId = byteBuf.readInt();
| this.password = Jtt809Util.readGBKString(byteBuf, 12);
| return this;
| }
| }
|
|