74 lines
1.3 KiB
Java
74 lines
1.3 KiB
Java
package com.wms.entity.table;
|
|
|
|
import com.wms.entity.BaseEntity;
|
|
|
|
/**
|
|
* 配置
|
|
*/
|
|
public class Config extends BaseEntity {
|
|
/**
|
|
* 配置ID
|
|
*/
|
|
private Integer configId;
|
|
|
|
/**
|
|
* 配置键
|
|
*/
|
|
private String configKey;
|
|
|
|
/**
|
|
* 配置值
|
|
*/
|
|
private String configValue;
|
|
|
|
/**
|
|
* 配置展示类型
|
|
*/
|
|
private String configType;
|
|
|
|
/**
|
|
* 配置名称
|
|
*/
|
|
private String configName;
|
|
|
|
public Integer getConfigId() {
|
|
return configId;
|
|
}
|
|
|
|
public void setConfigId(Integer configId) {
|
|
this.configId = configId;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
public String getConfigName() {
|
|
return configName;
|
|
}
|
|
|
|
public void setConfigName(String configName) {
|
|
this.configName = configName;
|
|
}
|
|
}
|