40 lines
888 B
Java
40 lines
888 B
Java
package com.tongran.rocketmq.domain;
|
|
|
|
import com.tongran.common.core.annotation.Excel;
|
|
import com.tongran.common.core.web.domain.BaseEntity;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* tcpdump探测策略对象 rm_tcpdump_config
|
|
*
|
|
* @author tongran
|
|
* @date 2026-01-21
|
|
*/
|
|
@Data
|
|
public class RmTcpdumpConfig extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** 主键ID */
|
|
private Long id;
|
|
|
|
/** 客户端ID */
|
|
@Excel(name = "客户端ID")
|
|
private String clientId;
|
|
|
|
/** 开启探测(0:否,1:是) */
|
|
@Excel(name = "开启探测(0:否,1:是)")
|
|
private Integer detectFlag;
|
|
|
|
/** 探测频率 */
|
|
@Excel(name = "探测频率")
|
|
private String frequency;
|
|
|
|
/** 探测时间列表(多个时间用,分隔) */
|
|
@Excel(name = "探测时间列表(多个时间用,分隔)")
|
|
private String detectTimes;
|
|
|
|
private String clientIds;
|
|
|
|
}
|