Helius
2021-01-11 4ece659308844cbe73053d3dd2a6f777f218eb13
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
package com.matrix.system.hive.bean;
 
import com.matrix.core.pojo.EntityDTO;
 
import java.util.Date;
 
/**
 * @description 经营数据
 * @author 
 * @date 2020-02-08 10:18
 */
public class SysBusinessData  extends EntityDTO{
 
    
    /**
     * 主键
     */
    private Integer  id;
            
    
    /**
     * 日期
     */
    private Date time;
            
    
    /**
     * 公司
     */
    private Long  companyId;
            
    
    /**
     * 门店
     */
    private Long  shopId;
            
    
    /**
     * 字段名称
     */
    private String  name;
            
    
    /**
     * 值
     */
    private String  value;
            
    
    /**
     * 唯一编码
     */
    private String  code;
            
    
    /**
     * 排序角标
     */
    private Integer  sequence;
            
    
    /**
     * 数据类型
     */
    private Integer  dataType;
            
    
    /**
     * 扩展字段1
     */
    private String  t1;
            
    
    /**
     * 扩展字段2
     */
    private String  t2;
            
    
    /**
     * 扩展字段3
     */
    private String  t3;
            
    
    /**
     * 扩展字段4
     */
    private String  t4;
            
    
    /**
     * 扩展字段5
     */
    private String  t5;
            
    
    /**
     * 扩展字段6
     */
    private String  t6;
            
    
    /**
     * 扩展字段7
     */
    private String  t7;
            
    
    /**
     * 扩展字段8
     */
    private String  t8;
            
    
    /**
     * 扩展字段9
     */
    private String  t9;
            
    
    /**
     * 扩展字段10
     */
    private String  t10;
            
    
    /**
     * 扩展字段11
     */
    private String  t11;
            
    
    /**
     * 扩展字段12
     */
    private String  t12;
            
    
    /**
     * 扩展字段13
     */
    private String  t13;
            
    
    /**
     * 扩展字段14
     */
    private String  t14;
            
    
    /**
     * 扩展字段15
     */
    private String  t15;
            
    
 
    public Integer getId() {
        return id;
    }
       
       public SysBusinessData setId(Integer id) {
        this.id=id;
        return this;
    }
       
 
    public Date getTime() {
        return time;
    }
       
       public SysBusinessData setTime(Date time) {
        this.time=time;
        return this;
    }
       
 
    public Long getCompanyId() {
        return companyId;
    }
       
       public SysBusinessData setCompanyId(Long companyId) {
        this.companyId=companyId;
        return this;
    }
       
 
    public Long getShopId() {
        return shopId;
    }
       
       public SysBusinessData setShopId(Long shopId) {
        this.shopId=shopId;
        return this;
    }
       
 
    public String getName() {
        return name;
    }
       
       public SysBusinessData setName(String name) {
        this.name=name;
        return this;
    }
       
 
    public String getValue() {
        return value;
    }
       
       public SysBusinessData setValue(String value) {
        this.value=value;
        return this;
    }
       
 
    public String getCode() {
        return code;
    }
       
       public SysBusinessData setCode(String code) {
        this.code=code;
        return this;
    }
       
 
    public Integer getSequence() {
        return sequence;
    }
       
       public SysBusinessData setSequence(Integer sequence) {
        this.sequence=sequence;
        return this;
    }
       
 
    public Integer getDataType() {
        return dataType;
    }
       
       public SysBusinessData setDataType(Integer dataType) {
        this.dataType=dataType;
        return this;
    }
       
 
    public String getT1() {
        return t1;
    }
       
       public SysBusinessData setT1(String t1) {
        this.t1=t1;
        return this;
    }
       
 
    public String getT2() {
        return t2;
    }
       
       public SysBusinessData setT2(String t2) {
        this.t2=t2;
        return this;
    }
       
 
    public String getT3() {
        return t3;
    }
       
       public SysBusinessData setT3(String t3) {
        this.t3=t3;
        return this;
    }
       
 
    public String getT4() {
        return t4;
    }
       
       public SysBusinessData setT4(String t4) {
        this.t4=t4;
        return this;
    }
       
 
    public String getT5() {
        return t5;
    }
       
       public SysBusinessData setT5(String t5) {
        this.t5=t5;
        return this;
    }
       
 
    public String getT6() {
        return t6;
    }
       
       public SysBusinessData setT6(String t6) {
        this.t6=t6;
        return this;
    }
       
 
    public String getT7() {
        return t7;
    }
       
       public SysBusinessData setT7(String t7) {
        this.t7=t7;
        return this;
    }
       
 
    public String getT8() {
        return t8;
    }
       
       public SysBusinessData setT8(String t8) {
        this.t8=t8;
        return this;
    }
       
 
    public String getT9() {
        return t9;
    }
       
       public SysBusinessData setT9(String t9) {
        this.t9=t9;
        return this;
    }
       
 
    public String getT10() {
        return t10;
    }
       
       public SysBusinessData setT10(String t10) {
        this.t10=t10;
        return this;
    }
       
 
    public String getT11() {
        return t11;
    }
       
       public SysBusinessData setT11(String t11) {
        this.t11=t11;
        return this;
    }
       
 
    public String getT12() {
        return t12;
    }
       
       public SysBusinessData setT12(String t12) {
        this.t12=t12;
        return this;
    }
       
 
    public String getT13() {
        return t13;
    }
       
       public SysBusinessData setT13(String t13) {
        this.t13=t13;
        return this;
    }
       
 
    public String getT14() {
        return t14;
    }
       
       public SysBusinessData setT14(String t14) {
        this.t14=t14;
        return this;
    }
       
 
    public String getT15() {
        return t15;
    }
       
       public SysBusinessData setT15(String t15) {
        this.t15=t15;
        return this;
    }
       
 
 
  
}