派生自 projectDept/qhighschool

EricsHu
2023-11-23 bef4f6d51bff03c0512a75f43e79699b7296f1fa
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
package com.qxueyou.scc.sys.model;
 
import java.io.Serializable;
import javax.persistence.*;
 
import org.hibernate.annotations.GenericGenerator;
 
 
/**
 * The persistent class for the sys_config database table.
 * 
 */
@Entity
//@Table(name="sys_config")
@Table(name="sys_config")
@NamedQuery(name="SysConfig.findAll", query="SELECT s FROM SysConfig s")
public class SysConfig implements Serializable {
    private static final long serialVersionUID = 1L;
    
    @Id
    @GeneratedValue(generator = "hibernate-uuid")
    @GenericGenerator(name = "hibernate-uuid", strategy = "uuid")
    @Column(name="CONFIG_ID", unique=true, nullable=false, length=32)
    private String configId;
 
    @Column(name="CONFIG_KEY", length=32)
    private String configKey;
 
    @Column(name="VALUE", length=255)
    private String value;
 
    public String getConfigId() {
        return this.configId;
    }
 
    public void setConfigId(String configId) {
        this.configId = configId;
    }
 
    public String getConfigKey() {
        return this.configKey;
    }
 
    public void setConfigKey(String configKey) {
        this.configKey = configKey;
    }
 
    public String getValue() {
        return this.value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
}