wangting
2024-11-05 19d2c06b04aab6d21a36bd5b41c78cdea8ae58b7
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
package com.vci.server.framework.systemConfig;
 
import java.io.Serializable;
 
import com.vci.common.annotaion.CustomAnnotaion;
import com.vci.common.objects.AbstractEntity;
 
@CustomAnnotaion(CustomDescription = "系统配置对象")
public class SystemCfg extends AbstractEntity implements Serializable {
 
    /**
     * 
     */
    @CustomAnnotaion(CustomDescription = "序列",InToString = false)
    private static final long serialVersionUID = -2773034103833060095L;
    @CustomAnnotaion(CustomDescription = "对象ID",InToString = false)
    private String id;
    @CustomAnnotaion(CustomDescription = "对象名称")
    private String name;
    @CustomAnnotaion(CustomDescription = "对象值")
    private String value;
    
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getValue() {
        return value;
    }
    public void setValue(String value) {
        this.value = value;
    }
    public static long getSerialversionuid() {
        return serialVersionUID;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
}