package com.se.system.domain;
|
|
import com.se.common.core.annotation.Excel;
|
import com.se.common.core.web.domain.BaseEntity;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 配置对象 sys_cfg
|
*
|
* @author se
|
* @date 2024-11-22
|
*/
|
public class SysCfg extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 配置ID */
|
private Long cfgId;
|
|
/** 名称 */
|
@Excel(name = "名称")
|
private String name;
|
|
/** 硬件 */
|
@Excel(name = "硬件")
|
private String hard;
|
|
/** 软件 */
|
@Excel(name = "软件")
|
private String soft;
|
|
/** 参数 */
|
@Excel(name = "参数")
|
private String args;
|
|
/** 状态(0正常 1停用) */
|
@Excel(name = "状态", readConverterExp = "0=正常,1=停用")
|
private String status;
|
|
public void setCfgId(Long cfgId)
|
{
|
this.cfgId = cfgId;
|
}
|
|
public Long getCfgId()
|
{
|
return cfgId;
|
}
|
public void setName(String name)
|
{
|
this.name = name;
|
}
|
|
public String getName()
|
{
|
return name;
|
}
|
public void setHard(String hard)
|
{
|
this.hard = hard;
|
}
|
|
public String getHard()
|
{
|
return hard;
|
}
|
public void setSoft(String soft)
|
{
|
this.soft = soft;
|
}
|
|
public String getSoft()
|
{
|
return soft;
|
}
|
public void setArgs(String args)
|
{
|
this.args = args;
|
}
|
|
public String getArgs()
|
{
|
return args;
|
}
|
public void setStatus(String status)
|
{
|
this.status = status;
|
}
|
|
public String getStatus()
|
{
|
return status;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("cfgId", getCfgId())
|
.append("name", getName())
|
.append("hard", getHard())
|
.append("soft", getSoft())
|
.append("args", getArgs())
|
.append("status", getStatus())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.toString();
|
}
|
}
|