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 ;
|
}
|