Administrator
2023-02-17 c23e613d2db47e0057873cd07050396ea998fd7b
提交 | 用户 | 时间
58d006 1 package com.mandi.fendan.persist;
A 2
3 import java.io.Serializable;
4
5 import javax.persistence.Entity;
6 import javax.persistence.Id;
7 import javax.persistence.Table;
8 import javax.persistence.UniqueConstraint;
9
10 /** 
11  * @author cx
12  * @version 创建时间:2017年10月23日 
13  * 类说明 
14  */
15 @Entity
16 @Table(name="fd_systemconfig",uniqueConstraints={@UniqueConstraint(columnNames={"name"})})
17 public class Fd_Systemconfig implements Serializable {
18     @Id
19     private String id;
20     private String name;
21     private byte numorstr;
22     private String proptype;
23     private String value;
24     public String getId() {
25         return id;
26     }
27     public void setId(String id) {
28         this.id = id;
29     }
30     public String getName() {
31         return name;
32     }
33     public void setName(String name) {
34         this.name = name;
35     }
36     public byte getNumorstr() {
37         return numorstr;
38     }
39     public void setNumorstr(byte numorstr) {
40         this.numorstr = numorstr;
41     }
42     public String getProptype() {
43         return proptype;
44     }
45     public void setProptype(String proptype) {
46         this.proptype = proptype;
47     }
48     public String getValue() {
49         return value;
50     }
51     public void setValue(String value) {
52         this.value = value;
53     }
54
55     
56
57     
58 }