Pu Zhibing
2025-02-28 8baab7959e8efd5be4c0276b7759c2b677eeb7df
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
34
35
36
37
38
package com.ruoyi.dataInterchange.model;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
/**
 * 住链路登录请求
 * @author zhibing.pu
 * @Date 2025/2/24 10:43
 */
@Data
public class UPConnectReq {
    /**
     * 用户名
     */
    @JsonProperty("USERID")
    private String userId;
    /**
     * 密码
     */
    @JsonProperty("PASSWORD")
    private String password;
    /**
     * 下级平台接入码,上级平台给下级平台分配的唯一标识号
     */
    @JsonProperty("MSG_GNSSCENTERID")
    private String msgGnsscenterid;
    /**
     * 下级平台提供对应的从链路服务端IP地址
     */
    @JsonProperty("DOWN_LINK_IP")
    private String downLinkIp;
    /**
     * 下级平台提供对应的从链路服务端端口号
     */
    @JsonProperty("DOWN_LINK_PORT")
    private String downLinkPort;
}