Pu Zhibing
4 小时以前 f355ef485a56e613b71d0262c089b995d7ca10d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.dataInterchange.model;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
/**
 * 从链路注销请求
 * @author zhibing.pu
 * @Date 2025/2/24 11:10
 */
@Data
public class DOWNDisconnectReq {
    /**
     * 校验码
     */
    @JsonProperty("VERIFY_CODE")
    private String verifyCode;
}