hjg
2023-11-22 975c04c0181b3da82a79cb04abe6a2f1799eb363
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
package com.mandi.fendan.persist;
 
import java.io.Serializable;
 
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.UniqueConstraint;
 
/** 
 * @author cx
 * @version 创建时间:2017年10月23日 
 * 类说明 
 */
@Entity
@Table(name="fd_systemconfig",uniqueConstraints={@UniqueConstraint(columnNames={"name"})})
public class Fd_Systemconfig implements Serializable {
    @Id
    private String id;
    private String name;
    private byte numorstr;
    private String proptype;
    private String value;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public byte getNumorstr() {
        return numorstr;
    }
    public void setNumorstr(byte numorstr) {
        this.numorstr = numorstr;
    }
    public String getProptype() {
        return proptype;
    }
    public void setProptype(String proptype) {
        this.proptype = proptype;
    }
    public String getValue() {
        return value;
    }
    public void setValue(String value) {
        this.value = value;
    }
 
    
 
    
}