RuoYi/ruoyi-system/src/main/java/com/ruoyi/system/domain/SysConfig.java

103 lines
2.4 KiB
Java
Raw Normal View History

2018-10-07 14:16:47 +08:00
package com.ruoyi.system.domain;
2018-07-09 08:44:52 +08:00
2018-10-03 23:11:09 +08:00
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
2018-10-07 14:16:47 +08:00
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.base.BaseEntity;
2018-07-09 08:44:52 +08:00
/**
* 参数配置表 sys_config
*
* @author ruoyi
*/
2018-10-07 14:16:47 +08:00
public class SysConfig extends BaseEntity
2018-07-09 08:44:52 +08:00
{
private static final long serialVersionUID = 1L;
/** 参数主键 */
2018-07-14 23:15:17 +08:00
@Excel(name = "参数主键")
2018-07-22 23:05:50 +08:00
private Long configId;
2018-07-14 23:15:17 +08:00
2018-07-09 08:44:52 +08:00
/** 参数名称 */
2018-07-14 23:15:17 +08:00
@Excel(name = "参数名称")
2018-07-09 08:44:52 +08:00
private String configName;
2018-07-14 23:15:17 +08:00
2018-07-09 08:44:52 +08:00
/** 参数键名 */
2018-07-14 23:15:17 +08:00
@Excel(name = "参数键名")
2018-07-09 08:44:52 +08:00
private String configKey;
2018-07-14 23:15:17 +08:00
2018-07-09 08:44:52 +08:00
/** 参数键值 */
2018-07-14 23:15:17 +08:00
@Excel(name = "参数键值")
2018-07-09 08:44:52 +08:00
private String configValue;
2018-07-14 23:15:17 +08:00
2018-07-09 08:44:52 +08:00
/** 系统内置Y是 N否 */
2018-07-14 23:15:17 +08:00
@Excel(name = "系统内置")
2018-07-09 08:44:52 +08:00
private String configType;
2018-07-22 23:05:50 +08:00
public Long getConfigId()
2018-07-09 08:44:52 +08:00
{
return configId;
}
2018-07-22 23:05:50 +08:00
public void setConfigId(Long configId)
2018-07-09 08:44:52 +08:00
{
this.configId = configId;
}
public String getConfigName()
{
return configName;
}
public void setConfigName(String configName)
{
this.configName = configName;
}
public String getConfigKey()
{
return configKey;
}
public void setConfigKey(String configKey)
{
this.configKey = configKey;
}
public String getConfigValue()
{
return configValue;
}
public void setConfigValue(String configValue)
{
this.configValue = configValue;
}
public String getConfigType()
{
return configType;
}
public void setConfigType(String configType)
{
this.configType = configType;
}
2018-09-03 08:45:08 +08:00
@Override
2018-10-03 23:11:09 +08:00
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("configId", getConfigId())
.append("configName", getConfigName())
.append("configKey", getConfigKey())
.append("configValue", getConfigValue())
.append("configType", getConfigType())
.append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.append("remark", getRemark())
.toString();
2018-08-26 23:36:30 +08:00
}
2018-07-09 08:44:52 +08:00
}