package com.iplatform.base.pojo;
|
|
import com.walker.web.param.ParamRequest;
|
|
public class ConfigParam extends ParamRequest {
|
|
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 getConfigType() {
|
return configType;
|
}
|
|
public void setConfigType(String configType) {
|
this.configType = configType;
|
}
|
|
private String configName;
|
|
/** 参数键名 */
|
// @Excel(name = "参数键名")
|
private String configKey;
|
|
// @Excel(name = "系统内置", readConverterExp = "Y=是,N=否")
|
private String configType;
|
}
|