87 lines
1.9 KiB
Java
87 lines
1.9 KiB
Java
package com.ruoyi.rocketmq.domain;
|
|||
|
|
|
||
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||
|
|
import com.ruoyi.common.core.annotation.Excel;
|
||
|
|
import com.ruoyi.common.core.web.domain.BaseEntity;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 交换机系统其他信息采集数据对象 initial_system_other_collect_data
|
||
|
|
*
|
||
|
|
* @author gyt
|
||
|
|
* @date 2025-09-23
|
||
|
|
*/
|
||
|
|
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;
|
||
|
|
|
||
|
|
public void setId(Long id)
|
||
|
|
{
|
||
|
|
this.id = id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Long getId()
|
||
|
|
{
|
||
|
|
return id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setClientId(String clientId)
|
||
|
|
{
|
||
|
|
this.clientId = clientId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getClientId()
|
||
|
|
{
|
||
|
|
return clientId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCollectType(String collectType)
|
||
|
|
{
|
||
|
|
this.collectType = collectType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCollectType()
|
||
|
|
{
|
||
|
|
return collectType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCollectValue(String collectValue)
|
||
|
|
{
|
||
|
|
this.collectValue = collectValue;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCollectValue()
|
||
|
|
{
|
||
|
|
return collectValue;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||
|
|
.append("id", getId())
|
||
|
|
.append("clientId", getClientId())
|
||
|
|
.append("collectType", getCollectType())
|
||
|
|
.append("collectValue", getCollectValue())
|
||
|
|
.append("createTime", getCreateTime())
|
||
|
|
.append("updateTime", getUpdateTime())
|
||
|
|
.append("createBy", getCreateBy())
|
||
|
|
.append("updateBy", getUpdateBy())
|
||
|
|
.toString();
|
||
|
|
}
|
||
|
|
}
|