派生自 projectDept/qhighschool

EricsHu
2023-11-26 1da190e7f267bcd3501884f3aeaac7476850fec7
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package com.qxueyou.scc.sys.model;
 
import java.io.Serializable;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.NamedQuery;
import javax.persistence.Table;
 
import org.hibernate.annotations.GenericGenerator;
 
/**
 * 
 * @author ody.yuan
 *
 */
@Entity
@Table(name="sys_config_file")
@NamedQuery(name="SysConfigFile.findAll", query="SELECT s FROM SysConfigFile s")
public class SysConfigFile implements Serializable {
    
    private static final long serialVersionUID = 1L;
    
    public static final String MODULE_TYPE_DOC = "1" ;
    public static final String MODULE_TYPE_IMG = "2" ;
    public static final String MODULE_TYPE_VIDEO = "3" ;
    public static final String MODULE_TYPE_AUDIO = "4" ;
    public static final String MODULE_TYPE_HTML = "5" ;// html文件
 
    @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_FILE_MODULE", length=64)
    private String configFileModule;
 
    @Column(name="CONFIG_FILE_DIRECTION", length=255)
    private String configFileDirection;
    
    @Column(name="MODULE_TYPE", length=255)
    private String moduletype;
    
    @Column(name="REMARK", length=64)
    private String remark;
    
    @Column(name="TABLE_NAME", length=255)
    private String tableName;
 
    public SysConfigFile() {
    }
 
    public String getConfigId() {
        return this.configId;
    }
 
    public String getConfigFileModule() {
        return configFileModule;
    }
 
    public void setConfigFileModule(String configFileModule) {
        this.configFileModule = configFileModule;
    }
 
    public String getConfigFileDirection() {
        return configFileDirection;
    }
 
    public void setConfigFileDirection(String configFileDirection) {
        this.configFileDirection = configFileDirection;
    }
 
    public void setConfigId(String configId) {
        this.configId = configId;
    }
 
    public String getModuletype() {
        return moduletype;
    }
 
    public void setModuletype(String moduletype) {
        this.moduletype = moduletype;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getTableName() {
        return tableName;
    }
 
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
 
 
}