shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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;
}