1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.ruoyi.dataInterchange.model;
|
| import com.fasterxml.jackson.annotation.JsonProperty;
| import lombok.Data;
|
| /**
| * 住链路注销请求
| * @author zhibing.pu
| * @Date 2025/2/24 10:53
| */
| @Data
| public class UPDisconnectReq {
| /**
| * 用户名
| */
| @JsonProperty("USERID")
| private String userId;
| /**
| * 密码
| */
| @JsonProperty("PASSWORD")
| private String password;
| }
|
|