37 lines
822 B
Java
37 lines
822 B
Java
package com.ruoyi.rocketmq.domain;
|
|
|
|
import com.ruoyi.common.core.annotation.Excel;
|
|
import com.ruoyi.common.core.web.domain.BaseEntity;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 交换机系统其他信息采集数据对象 initial_system_other_collect_data
|
|
*
|
|
* @author gyt
|
|
* @date 2025-09-23
|
|
*/
|
|
@Data
|
|
public class InitialSystemOtherCollectData extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** 主键ID */
|
|
private Long id;
|
|
|
|
/** 客户端ID */
|
|
@Excel(name = "客户端ID")
|
|
private String clientId;
|
|
|
|
/** 采集类型 */
|
|
@Excel(name = "采集类型")
|
|
private String collectType;
|
|
|
|
/** 采集值 */
|
|
@Excel(name = "采集值")
|
|
private String collectValue;
|
|
/** 开始时间 */
|
|
private String startTime;
|
|
/** 结束时间 */
|
|
private String endTime;
|
|
}
|