riku
2021-09-24 4f1b7973c53b45f57e451191bfd5a3d2136a004c
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
package cn.flightfeather.supervision.domain.entity;
 
import java.util.Date;
import javax.persistence.*;
 
@Table(name = "ea_t_mediafile")
public class LedgerMediaFile {
    @Id
    @Column(name = "MF_GUID")
    private String mfGuid;
 
    @Column(name = "LR_GUID")
    private String lrGuid;
 
    @Column(name = "CI_GUID")
    private String ciGuid;
 
    @Column(name = "MF_FileType")
    private Integer mfFiletype;
 
    @Column(name = "MF_Path1")
    private String mfPath1;
 
    @Column(name = "MF_Description1")
    private String mfDescription1;
 
    @Column(name = "MF_Path2")
    private String mfPath2;
 
    @Column(name = "MF_Description2")
    private String mfDescription2;
 
    @Column(name = "MF_SaveTime")
    private Date mfSavetime;
 
    @Column(name = "MF_IsDelete")
    private Boolean mfIsdelete;
 
    @Column(name = "MF_Extension1")
    private String mfExtension1;
 
    @Column(name = "MF_Extension2")
    private String mfExtension2;
 
    @Column(name = "MF_Extension3")
    private String mfExtension3;
 
    @Column(name = "MF_Remark")
    private String mfRemark;
 
    /**
     * @return MF_GUID
     */
    public String getMfGuid() {
        return mfGuid;
    }
 
    /**
     * @param mfGuid
     */
    public void setMfGuid(String mfGuid) {
        this.mfGuid = mfGuid == null ? null : mfGuid.trim();
    }
 
    /**
     * @return LR_GUID
     */
    public String getLrGuid() {
        return lrGuid;
    }
 
    /**
     * @param lrGuid
     */
    public void setLrGuid(String lrGuid) {
        this.lrGuid = lrGuid == null ? null : lrGuid.trim();
    }
 
    /**
     * @return CI_GUID
     */
    public String getCiGuid() {
        return ciGuid;
    }
 
    /**
     * @param ciGuid
     */
    public void setCiGuid(String ciGuid) {
        this.ciGuid = ciGuid == null ? null : ciGuid.trim();
    }
 
    /**
     * @return MF_FileType
     */
    public Integer getMfFiletype() {
        return mfFiletype;
    }
 
    /**
     * @param mfFiletype
     */
    public void setMfFiletype(Integer mfFiletype) {
        this.mfFiletype = mfFiletype;
    }
 
    /**
     * @return MF_Path1
     */
    public String getMfPath1() {
        return mfPath1;
    }
 
    /**
     * @param mfPath1
     */
    public void setMfPath1(String mfPath1) {
        this.mfPath1 = mfPath1 == null ? null : mfPath1.trim();
    }
 
    /**
     * @return MF_Description1
     */
    public String getMfDescription1() {
        return mfDescription1;
    }
 
    /**
     * @param mfDescription1
     */
    public void setMfDescription1(String mfDescription1) {
        this.mfDescription1 = mfDescription1 == null ? null : mfDescription1.trim();
    }
 
    /**
     * @return MF_Path2
     */
    public String getMfPath2() {
        return mfPath2;
    }
 
    /**
     * @param mfPath2
     */
    public void setMfPath2(String mfPath2) {
        this.mfPath2 = mfPath2 == null ? null : mfPath2.trim();
    }
 
    /**
     * @return MF_Description2
     */
    public String getMfDescription2() {
        return mfDescription2;
    }
 
    /**
     * @param mfDescription2
     */
    public void setMfDescription2(String mfDescription2) {
        this.mfDescription2 = mfDescription2 == null ? null : mfDescription2.trim();
    }
 
    /**
     * @return MF_SaveTime
     */
    public Date getMfSavetime() {
        return mfSavetime;
    }
 
    /**
     * @param mfSavetime
     */
    public void setMfSavetime(Date mfSavetime) {
        this.mfSavetime = mfSavetime;
    }
 
    /**
     * @return MF_IsDelete
     */
    public Boolean getMfIsdelete() {
        return mfIsdelete;
    }
 
    /**
     * @param mfIsdelete
     */
    public void setMfIsdelete(Boolean mfIsdelete) {
        this.mfIsdelete = mfIsdelete;
    }
 
    /**
     * @return MF_Extension1
     */
    public String getMfExtension1() {
        return mfExtension1;
    }
 
    /**
     * @param mfExtension1
     */
    public void setMfExtension1(String mfExtension1) {
        this.mfExtension1 = mfExtension1 == null ? null : mfExtension1.trim();
    }
 
    /**
     * @return MF_Extension2
     */
    public String getMfExtension2() {
        return mfExtension2;
    }
 
    /**
     * @param mfExtension2
     */
    public void setMfExtension2(String mfExtension2) {
        this.mfExtension2 = mfExtension2 == null ? null : mfExtension2.trim();
    }
 
    /**
     * @return MF_Extension3
     */
    public String getMfExtension3() {
        return mfExtension3;
    }
 
    /**
     * @param mfExtension3
     */
    public void setMfExtension3(String mfExtension3) {
        this.mfExtension3 = mfExtension3 == null ? null : mfExtension3.trim();
    }
 
    /**
     * @return MF_Remark
     */
    public String getMfRemark() {
        return mfRemark;
    }
 
    /**
     * @param mfRemark
     */
    public void setMfRemark(String mfRemark) {
        this.mfRemark = mfRemark == null ? null : mfRemark.trim();
    }
}