liurunyu
2024-08-15 f7e731bdc2fce4445c0d22993134c6c2b07d207b
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.ruoyi.system.domain.dto;
 
 
import com.ruoyi.common.core.domain.BaseEntity;
import lombok.Data;
 
import java.util.List;
 
/**
 * @author Administrator
 */
@Data
public class NettyCommandDTO  extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 设备列表
     */
    private List<String> stcdList;
 
    /** 命令 */
    private  Integer type;
 
    /** 命令1 配置远程IP1 */
    private  String putIp;
 
    /** 命令2  远程配置域名 */
    private String putDomainName;
 
    /** 命令3  远程配置核算方式  1.本地核算  2.平台核算  单选 */
    private Integer putAccountingMethod;
 
    /** 命令4 重新登录 */
    private  String reLogin;
 
    /** 命令5 设置远程升级IP地址(第一路ip) */
    private String putRemoteIp;
 
    /** 命令5 设置远程升级IP 链路 */
    private Integer putLink ;
 
    /**命令6、跳转到远程升级命令*/
    private Integer  performUpgrade;
 
    /**命令7  查询IP地址报文*/
    private  Integer queryIP;
 
    /**命令8  查询域名命令(第一路IP)*/
    private  Integer  queryDomainName;
 
    /**命令9、查询远程升级IP地址*/
    private  Integer queryRemoteIp;
 
    /**命令10 查询远程核算配置*/
    private   Integer  queryAccountingMethod;
 
    /**命令11 远程注册命令*/
    private Integer  remoteRegistrationCommand;
 
    /**12、远程配置登录方式  1.ip  2.域名*/
    private Integer   putLoginMode;
 
    /**命令13 查询登录方式*/
    private  Integer  queryLoginMode;
    /**命令14   升级*/
    private   Integer  upgrade ;
}