派生自 projectDept/qhighschool

EricsHu
2022-12-05 068fc7f2e81178e55fa191a13709af64b1a163f6
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
106
107
108
package com.qxueyou.scc.sms.model;
 
import java.io.Serializable;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
 
import org.hibernate.annotations.GenericGenerator;
 
/**
 * 短信表配置 实体
 * @author ody.yuan
 *
 */
@Entity
@Table(name="sms_config")
public class SmsConfig 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="MODULE", length=255)
    private String module;
    
    /**  最上层org_id  */
    @Column(name="TOP_ORG_ID", length=255)
    private String topOrgId;
    
    /**  开关  */
    @Column(name="SWITCH_FLAG", length=255)
    private Boolean switchFlag;
    
    public static final String  REG_ACTIVITY_MODULE = "REG_ACTIVITY"; // 激活
 
    /**
     * @return the configId
     */
    public String getConfigId() {
        return configId;
    }
 
    /**
     * @param configId the configId to set
     */
    public void setConfigId(String configId) {
        this.configId = configId;
    }
 
    /**
     * @return the module
     */
    public String getModule() {
        return module;
    }
 
    /**
     * @param module the module to set
     */
    public void setModule(String module) {
        this.module = module;
    }
 
    /**
     * @return the topOrgId
     */
    public String getTopOrgId() {
        return topOrgId;
    }
 
    /**
     * @param topOrgId the topOrgId to set
     */
    public void setTopOrgId(String topOrgId) {
        this.topOrgId = topOrgId;
    }
 
    /**
     * @return the switchFlag
     */
    public Boolean getSwitchFlag() {
        return switchFlag;
    }
 
    /**
     * @param switchFlag the switchFlag to set
     */
    public void setSwitchFlag(Boolean switchFlag) {
        this.switchFlag = switchFlag;
    }
 
 
    
    
 
}