zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
commit | author | age
a18bfa 1 package cn.autoform.db.entity;
Z 2
3 import java.io.Serializable;
4 import java.sql.Timestamp;
5
6 public class MasterDefineEntity implements Serializable {
7
8     /**
9      * serialVersionUID
10      */
11     private static final long serialVersionUID = 8401789037470019775L;
12
13     Integer id = null;
14     String code = "";
15     String name = "";
16     String description = "";
17     String type = "";
18     Integer del_flag = 0;
19     String def1 = "";
20     String def2 = "";
21     String def3 = "";
22     String def4 = "";
23     String def5 = "";
24     Integer ins_p = null;
25     Timestamp ins_t = null;
26     Integer upd_p = null;
27     Timestamp upd_t = null;
28     Long tenant_id = null;
29
30     public Integer getId() {
31         return id;
32     }
33
34     public void setId(Integer id) {
35         this.id = id;
36     }
37
38     public String getCode() {
39         return code;
40     }
41
42     public void setCode(String code) {
43         this.code = code;
44     }
45
46     public String getName() {
47         return name;
48     }
49
50     public void setName(String name) {
51         this.name = name;
52     }
53
54     public String getDescription() {
55         return description;
56     }
57
58     public void setDescription(String description) {
59         this.description = description;
60     }
61
62     public String getType() {
63         return type;
64     }
65
66     public void setType(String type) {
67         this.type = type;
68     }
69
70     public Integer getDel_flag() {
71         return del_flag;
72     }
73
74     public void setDel_flag(Integer del_flag) {
75         this.del_flag = del_flag;
76     }
77
78     public String getDef1() {
79         return def1;
80     }
81
82     public void setDef1(String def1) {
83         this.def1 = def1;
84     }
85
86     public String getDef2() {
87         return def2;
88     }
89
90     public void setDef2(String def2) {
91         this.def2 = def2;
92     }
93
94     public String getDef3() {
95         return def3;
96     }
97
98     public void setDef3(String def3) {
99         this.def3 = def3;
100     }
101
102     public String getDef4() {
103         return def4;
104     }
105
106     public void setDef4(String def4) {
107         this.def4 = def4;
108     }
109
110     public String getDef5() {
111         return def5;
112     }
113
114     public void setDef5(String def5) {
115         this.def5 = def5;
116     }
117
118     public Integer getIns_p() {
119         return ins_p;
120     }
121
122     public void setIns_p(Integer ins_p) {
123         this.ins_p = ins_p;
124     }
125
126     public Timestamp getIns_t() {
127         return ins_t;
128     }
129
130     public void setIns_t(Timestamp ins_t) {
131         this.ins_t = ins_t;
132     }
133
134     public Integer getUpd_p() {
135         return upd_p;
136     }
137
138     public void setUpd_p(Integer upd_p) {
139         this.upd_p = upd_p;
140     }
141
142     public Timestamp getUpd_t() {
143         return upd_t;
144     }
145
146     public void setUpd_t(Timestamp upd_t) {
147         this.upd_t = upd_t;
148     }
149
150     public Long getTenant_id() {
151         return tenant_id;
152     }
153
154     public void setTenant_id(Long tenant_id) {
155         this.tenant_id = tenant_id;
156     }
157 }