派生自 projectDept/qhighschool

EricsHu
2023-09-01 19e6057d3797b6fd6770ed5a98ddaef0b86a4c47
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
package com.qxueyou.scc.sys.model;
 
import java.io.Serializable;
import javax.persistence.*;
 
import org.hibernate.annotations.GenericGenerator;
 
 
/**
 * The persistent class for the sys_dictionary database table.
 * 
 */
@Entity
@Table(name="sys_dictionary")
@NamedQuery(name="SysDictionary.findAll", query="SELECT s FROM SysDictionary s")
public class SysDictionary implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Id
    @GeneratedValue(generator = "hibernate-uuid")
    @GenericGenerator(name = "hibernate-uuid", strategy = "uuid")
    @Column(name="DICTIONARY_ID", unique=true, nullable=false, length=32)
    private String dictionaryId;
 
    @Column(name="DIC_KEY", length=32)
    private String dicKey;
 
    @Column(name="STATUS")
    private short status;
 
    @Column(name="TYPE_ID", length=32)
    private String typeId;
 
    @Column(name="VALUE", length=255)
    private String value;
 
    public SysDictionary() {
    }
 
    public String getDictionaryId() {
        return this.dictionaryId;
    }
 
    public void setDictionaryId(String dictionaryId) {
        this.dictionaryId = dictionaryId;
    }
 
    public String getDicKey() {
        return this.dicKey;
    }
 
    public void setDicKey(String dicKey) {
        this.dicKey = dicKey;
    }
 
    public short getStatus() {
        return this.status;
    }
 
    public void setStatus(short status) {
        this.status = status;
    }
 
    public String getTypeId() {
        return this.typeId;
    }
 
    public void setTypeId(String typeId) {
        this.typeId = typeId;
    }
 
    public String getValue() {
        return this.value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
}