zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
package cn.autoform.db.entity;
 
import java.io.Serializable;
import java.sql.Timestamp;
 
public class MasterElementEntity implements Serializable{
    
    /**
     * serialVersionUID
     */
    private static final long serialVersionUID = -6931365476469446604L;
    
    Integer id = null;
    String define_code = "";
    String code = "";
    String name = "";
    String type = "";
    Integer len = null;
    Integer prec = null;
    Boolean must_flag = null;
    String description = "";
    String alias = "";
    Integer del_flag = 0;
    String def1 = "";
    String def2 = "";
    String def3 = "";
    String def4 = "";
    String def5 = "";
    Integer ins_p = null;
    Timestamp ins_t = null;
    Integer upd_p = null;
    Timestamp upd_t = null;
    Long tenant_id = null;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getDefine_code() {
        return define_code;
    }
 
    public void setDefine_code(String define_code) {
        this.define_code = define_code;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public Integer getLen() {
        return len;
    }
 
    public void setLen(Integer len) {
        this.len = len;
    }
 
    public Integer getPrec() {
        return prec;
    }
 
    public void setPrec(Integer prec) {
        this.prec = prec;
    }
 
    public Boolean getMust_flag() {
        return must_flag;
    }
 
    public void setMust_flag(Boolean must_flag) {
        this.must_flag = must_flag;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getAlias() {
        return alias;
    }
 
    public void setAlias(String alias) {
        this.alias = alias;
    }
 
    public Integer getDel_flag() {
        return del_flag;
    }
 
    public void setDel_flag(Integer del_flag) {
        this.del_flag = del_flag;
    }
 
    public String getDef1() {
        return def1;
    }
 
    public void setDef1(String def1) {
        this.def1 = def1;
    }
 
    public String getDef2() {
        return def2;
    }
 
    public void setDef2(String def2) {
        this.def2 = def2;
    }
 
    public String getDef3() {
        return def3;
    }
 
    public void setDef3(String def3) {
        this.def3 = def3;
    }
 
    public String getDef4() {
        return def4;
    }
 
    public void setDef4(String def4) {
        this.def4 = def4;
    }
 
    public String getDef5() {
        return def5;
    }
 
    public void setDef5(String def5) {
        this.def5 = def5;
    }
 
    public Integer getIns_p() {
        return ins_p;
    }
 
    public void setIns_p(Integer ins_p) {
        this.ins_p = ins_p;
    }
 
    public Timestamp getIns_t() {
        return ins_t;
    }
 
    public void setIns_t(Timestamp ins_t) {
        this.ins_t = ins_t;
    }
 
    public Integer getUpd_p() {
        return upd_p;
    }
 
    public void setUpd_p(Integer upd_p) {
        this.upd_p = upd_p;
    }
 
    public Timestamp getUpd_t() {
        return upd_t;
    }
 
    public void setUpd_t(Timestamp upd_t) {
        this.upd_t = upd_t;
    }
 
    public Long getTenant_id() {
        return tenant_id;
    }
 
    public void setTenant_id(Long tenant_id) {
        this.tenant_id = tenant_id;
    }
 
}