admin
2020-03-31 dcfd801ea435c1c87ed47f2ee24cdabaaf230d6f
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.yeshi.fanli.entity.system;
 
import java.util.HashSet;
import java.util.Set;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
/**
 * 系统配置参数
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_system_config")
public class SystemConfig {
    
    @Column(name = "id")
    private Long id;
    
    @Column(name = "key")
    private String key;
    
    @Column(name = "value")
    private String value;
    
    @Column(name = "name")
    private String name;
    
    @Column(name = "updatetime")
    private Long updatetime;
    
    private Set<BusinessSystem> systems=new HashSet<BusinessSystem>();
    
    public SystemConfig() {
    }
 
    public SystemConfig(Long id) {
        super();
        this.id = id;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Long getUpdatetime() {
        return updatetime;
    }
 
    public void setUpdatetime(Long updatetime) {
        this.updatetime = updatetime;
    }
 
    public Set<BusinessSystem> getSystems() {
        return systems;
    }
 
    public void setSystems(Set<BusinessSystem> systems) {
        this.systems = systems;
    }
}