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
| package com.ruoyi.dataInterchange.model;
|
| import com.fasterxml.jackson.annotation.JsonProperty;
| import lombok.Data;
|
| /**
| * 住链路登录应答消息
| * @author zhibing.pu
| * @Date 2025/2/24 10:47
| */
| @Data
| public class UPConnectRsp {
| /**
| * 验证结果
| * 0x00:成功
| * 0x01:IP地址不正确
| * 0x02:接入码不正确
| * 0x03:用户没有注册
| * 0x04:密码错误
| * 0x05:资源紧张,超厚再连接(已经占用)
| * 0xFF::其他
| */
| @JsonProperty("RESULT")
| private String result;
| /**
| * 校验码
| */
| @JsonProperty("VERIFY_CODE")
| private String verifyCode;
| }
|
|