2025-08-26 19:14:12 +08:00
|
|
|
|
package com.ruoyi.rocketmq.domain;
|
|
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.common.core.annotation.Excel;
|
|
|
|
|
|
import com.ruoyi.common.core.web.domain.BaseEntity;
|
2025-09-02 19:54:54 +08:00
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
2025-08-26 19:14:12 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 交换机监控信息对象 initial_switch_info_temp
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author gyt
|
|
|
|
|
|
* @date 2025-08-26
|
|
|
|
|
|
*/
|
2025-09-02 19:54:54 +08:00
|
|
|
|
@Data
|
2025-08-26 19:14:12 +08:00
|
|
|
|
public class InitialSwitchInfoTemp extends BaseEntity
|
|
|
|
|
|
{
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
|
|
/** 自增主键ID */
|
|
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
|
|
/** 客户端ID */
|
|
|
|
|
|
@Excel(name = "客户端ID")
|
|
|
|
|
|
private String clientId;
|
|
|
|
|
|
|
|
|
|
|
|
/** 网络接口名称(如eth0、ens33等) */
|
|
|
|
|
|
@Excel(name = "网络接口名称(如eth0、ens33等)")
|
|
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
|
|
|
/** 接收流量(字节) */
|
|
|
|
|
|
@Excel(name = "接收流量(字节)")
|
|
|
|
|
|
private BigDecimal inBytes;
|
|
|
|
|
|
|
|
|
|
|
|
/** 发送流量(字节) */
|
|
|
|
|
|
@Excel(name = "发送流量(字节)")
|
|
|
|
|
|
private BigDecimal outBytes;
|
|
|
|
|
|
|
|
|
|
|
|
/** 接口状态(up/down等) */
|
|
|
|
|
|
@Excel(name = "接口状态(up/down等)")
|
|
|
|
|
|
private String status;
|
|
|
|
|
|
|
|
|
|
|
|
/** 接口类型(ethernet/wireless等) */
|
|
|
|
|
|
@Excel(name = "接口类型(ethernet/wireless等)")
|
|
|
|
|
|
private String type;
|
|
|
|
|
|
|
|
|
|
|
|
/** 接收流量(bytes/s) */
|
|
|
|
|
|
@Excel(name = "接收流量", readConverterExp = "b=ytes/s")
|
|
|
|
|
|
private BigDecimal inSpeed;
|
|
|
|
|
|
|
|
|
|
|
|
/** 发送流量(bytes/s) */
|
|
|
|
|
|
@Excel(name = "发送流量", readConverterExp = "b=ytes/s")
|
|
|
|
|
|
private BigDecimal outSpeed;
|
2025-09-02 19:54:54 +08:00
|
|
|
|
/** 交换机ip */
|
|
|
|
|
|
private String switchIp;
|
2025-08-26 19:14:12 +08:00
|
|
|
|
}
|