Helius
2021-03-26 071b6afa2e5d03fe2375f48499041e1ae415509b
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
package com.xcong.excoin.modules.member.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.xcong.excoin.modules.member.entity.MemberAccountMoneyChangeEntity;
import com.xcong.excoin.modules.member.entity.MemberEntity;
import com.xcong.excoin.modules.member.vo.MemberDataInfoVo;
import com.xcong.excoin.modules.trademanage.vo.MemberAccountInfoVo;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
/**
 * @author wzy
 * @date 2020-06-10
 **/
public interface MemberMapper extends BaseMapper<MemberEntity> {
 
    IPage<MemberEntity> selectMemberListInPage(Page<MemberEntity> page, @Param("record") MemberEntity memberEntity);
    
    IPage<MemberDataInfoVo> selectMemberDataInfoDtoListInPage(Page<MemberEntity> page, @Param("record") MemberEntity memberEntity);
 
    IPage<MemberAccountInfoVo> findMemberAccountInfoListInPage(Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
    
    String selectAgentForAccount(long memberId);
    
    String selectTradeSetting();
 
    String selectMemberDataInfoCount();
 
    String selectTotalAmountUsdtBForBasicRealData();
 
    String selectTotalAmountUsdtSForBasicRealData();
 
    String selectTotalAmountUsdtCZForBasicRealData();
 
    String selectTotalAmountUsdtTXForBasicRealData();
 
    String selectReturnMoneyForBasicRealData();
 
    String selectClosingpriceForBasicRealData();
 
    String selectSellClosingpriceForBasicRealData();
 
    String selectRewardratioForBasicRealData();
 
    String selectZCYHForBasicRealData();
 
    String selectSFCCForBasicRealData();
 
    String selectBBZHForBasicRealData();
 
    String selectHYZHForBasicRealData();
 
    String selectprepriceForBasicRealData();
 
    String selectBBZCForBasicRealData();
 
    String selectHYZCForBasicRealData();
 
    String selectDLZCForBasicRealData();
 
    List<String> selectMemberBylowLevelInviteId(String lowLevelInviteId);
    
    String selectRewardratioForBasicRealDataBymid(Long memberId);
 
    String selectTotalAmountUsdtBForBasicRealDataBymemberId(Long memberId);
 
    String selectTotalAmountUsdtSForBasicRealDataBymemberId(Long memberId);
 
    String selectTotalAmountUsdtCZForBasicRealDataBymemberId(Long memberId);
 
    String selectTotalAmountUsdtTXForBasicRealDataBymemberId(Long memberId);
 
    String selectReturnMoneyForBasicRealDataBymemberId(Long memberId);
 
    String selectClosingpriceForBasicRealDataBymemberId(Long memberId);
 
    String selectSellClosingpriceForBasicRealDataBymemberId(Long memberId);
 
    String selectRewardratioForBasicRealDataBymemberId(Long memberId);
 
    String selectprepriceForBasicRealDataBymemberId(Long memberId);
 
    String selectBBZCForBasicRealDataBymemberId(Long memberId);
 
    String selectHYZCForBasicRealDataBymemberId(Long memberId);
 
    String selectDLZCForBasicRealDataBymemberId(Long memberId);
 
    IPage<MemberEntity> findMemberAloneInPage(Page<MemberEntity> page, @Param("record") MemberEntity member);
    
    IPage<MemberEntity> findMemberAloneTestInPage(Page<MemberEntity> page, @Param("record") MemberEntity member);
 
    IPage<MemberDataInfoVo> selectMemberDataInfoDtoListInPageAlone(Page<MemberEntity> page, @Param("record") MemberEntity memberEntity);
    IPage<MemberDataInfoVo> findMemberDataInfoAllAloneTestListInPage(Page<MemberEntity> page, @Param("record") MemberEntity memberEntity);
    IPage<MemberDataInfoVo> selectMemberDataInfoDtoRealListInPageAlone(Page<MemberEntity> page, @Param("record") MemberEntity memberEntity);
    IPage<MemberDataInfoVo> findMemberDataInfoAloneTestDtoListInPage(Page<MemberEntity> page, @Param("record") MemberEntity memberEntity);
 
    String selectTotalAmountUsdtBForBasicRealDataAlone();
    String selectTotalAmountUsdtBForBasicRealTestDataAlone();
    String selectTotalAmountUsdtBForBasicRealTestAllDataAlone();
 
    String selectTotalAmountUsdtBForBasicData();
 
    String selectTotalAmountUsdtSForBasicData();
 
    String selectTotalAmountUsdtCZForBasicData();
 
    String selectTotalAmountUsdtTXForBasicData();
 
    String selectClosingpriceForBasicData();
 
    String selectSellClosingpriceForBasicData();
 
    String selectRewardratioForBasicData();
 
    String selectSFCCForBasicData();
 
    String selectBBZHForBasicData();
 
    String selectHYZHForBasicData();
 
    String selectprepriceForBasicData();
 
    String selectBBZCForBasicData();
 
    String selectHYZCForBasicData();
 
    String selectDLZCForBasicData();
 
    String selectTotalAmountUsdtSForBasicRealDataAlone();
    String selectTotalAmountUsdtSForBasicRealTestDataAlone();
    String selectTotalAmountUsdtSForBasicRealTestAllDataAlone();
 
    String selectTotalAmountUsdtCZForBasicRealDataAlone();
    String selectTotalAmountUsdtCZForBasicRealTestDataAlone();
    String selectTotalAmountUsdtCZForBasicRealTestAllDataAlone();
 
    String selectTotalAmountUsdtTXForBasicRealDataAlone();
    String selectTotalAmountUsdtTXForBasicRealTestDataAlone();
    String selectTotalAmountUsdtTXForBasicRealTestAllDataAlone();
 
    String selectReturnMoneyForBasicRealDataAlone();
    String selectReturnMoneyForBasicRealTestDataAlone();
    String selectReturnMoneyForBasicRealTestAllDataAlone();
 
    String selectClosingpriceForBasicRealDataAlone();
    String selectClosingpriceForBasicRealTestDataAlone();
    String selectClosingpriceForBasicRealTestAllDataAlone();
 
    String selectSellClosingpriceForBasicRealDataAlone();
    String selectSellClosingpriceForBasicRealTestDataAlone();
    String selectSellClosingpriceForBasicRealTestAllDataAlone();
 
    String selectRewardratioForBasicRealDataAlone();
    String selectRewardratioForBasicRealTestDataAlone();
    String selectRewardratioForBasicRealTestAllDataAlone();
 
    String selectSFCCForBasicRealDataAlone();
    String selectSFCCForBasicRealTestDataAlone();
    String selectSFCCForBasicRealTestAllDataAlone();
 
    String selectBBZHForBasicRealDataAlone();
    String selectBBZHForBasicRealTestDataAlone();
    String selectBBZHForBasicRealTestAllDataAlone();
 
    String selectHYZHForBasicRealDataAlone();
    String selectHYZHForBasicRealTestDataAlone();
    String selectHYZHForBasicRealTestAllDataAlone();
 
    String selectprepriceForBasicRealDataAlone();
    String selectprepriceForBasicRealTestDataAlone();
    String selectprepriceForBasicRealTestAllDataAlone();
 
    String selectBBZCForBasicRealDataAlone();
    String selectBBZCForBasicRealTestDataAlone();
    String selectBBZCForBasicRealTestAllDataAlone();
 
    String selectHYZCForBasicRealDataAlone();
    String selectHYZCForBasicRealTestDataAlone();
    String selectHYZCForBasicRealTestAllDataAlone();
 
    String selectDLZCForBasicRealDataAlone();
    String selectDLZCForBasicRealTestDataAlone();
    String selectDLZCForBasicRealTestAllDataAlone();
 
    String selectTotalAmountUsdtBForBasicAllDataAlone();
 
    String selectTotalAmountUsdtSForBasicAllDataAlone();
 
    String selectTotalAmountUsdtCZForBasicAllDataAlone();
 
    String selectTotalAmountUsdtTXForBasicAllDataAlone();
 
    String selectReturnMoneyForBasicAllDataAlone();
 
    String selectClosingpriceForBasicAllDataAlone();
 
    String selectSellClosingpriceForBasicAllDataAlone();
 
    String selectRewardratioForBasicAllDataAlone();
 
    String selectSFCCForBasicAllDataAlone();
 
    String selectBBZHForBasicAllDataAlone();
 
    String selectHYZHForBasicAllDataAlone();
 
    String selectprepriceForBasicAllDataAlone();
 
    String selectBBZCForBasicAllDataAlone();
 
    String selectHYZCForBasicAllDataAlone();
 
    String selectDLZCForBasicAllDataAlone();
 
    IPage<MemberAccountInfoVo> findMemberAccountInfoAloneListInPage(Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
 
    IPage<MemberEntity> findMemberListTestInPage(Page<MemberEntity> page, @Param("record")MemberEntity member);
 
    IPage<MemberAccountInfoVo> findmemberAccountInfoAloneTestListInPage(Page<MemberEntity> page,
            @Param("record")MemberEntity memberEntity);
 
    String selectMemberInfoDetailByInviteId(@Param("inviteId")String inviteId);
 
    List<MemberEntity> selectMemberDataInfoListSearchs(@Param("inviteId")String inviteId);
 
    MemberEntity selectMemberByInviteId(@Param("inviteId")String string);
 
    IPage<MemberEntity> selectDataInfoListSearchs(Page<MemberEntity> page, @Param("record")MemberEntity member);
    
    IPage<MemberAccountInfoVo> findMemberAccountInfoAloneOneInPage(
            Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
 
    IPage<MemberAccountInfoVo> findMemberAccountInfoAloneTwoInPage(
            Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
 
    IPage<MemberAccountInfoVo> findMemberAccountInfoAloneTeeInPage(
            Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
 
    IPage<MemberAccountInfoVo> findMemberAccountInfoAloneAllInPage(
            Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
 
    List<MemberAccountInfoVo> selectWalletContractByMemberId(@Param("memberId")Long memberId);
 
    String selectTotalAmountUsdtBForDataInfoOne();
    String selectTotalAmountUsdtSForDataInfoOne();
    String selectTotalAmountUsdtCZForDataInfoOne();
    String selectTotalAmountUsdtTXForDataInfoOne();
    String selectReturnMoneyForDataInfoOne();
    String selectClosingpriceForDataInfoOne();
    String selectSellClosingpriceForDataInfoOne();
    String selectRewardratioForDataInfoOne();
    String selectSFCCForDataInfoOne();
    String selectBBZHForDataInfoOne();
    String selectHYZHForDataInfoOne();
    String selectprepriceForDataInfoOne();
    String selectBBZCForDataInfoOne();
    String selectHYZCForDataInfoOne();
    String selectDLZCForDataInfoOne();
    IPage<MemberDataInfoVo> findMemberDataInfoOneInPage(Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
 
    String selectTotalAmountUsdtBForDataInfoOneReal();
    String selectTotalAmountUsdtSForDataInfoOneReal();
    String selectTotalAmountUsdtCZForDataInfoOneReal();
    String selectTotalAmountUsdtTXForDataInfoOneReal();
    String selectReturnMoneyForDataInfoOneReal();
    String selectClosingpriceForDataInfoOneReal();
    String selectSellClosingpriceForDataInfoOneReal();
    String selectRewardratioForDataInfoOneReal();
    String selectSFCCForDataInfoOneReal();
    String selectBBZHForDataInfoOneReal();
    String selectHYZHForDataInfoOneReal();
    String selectprepriceForDataInfoOneReal();
    String selectBBZCForDataInfoOneReal();
    String selectHYZCForDataInfoOneReal();
    String selectDLZCForDataInfoOneReal();
    IPage<MemberDataInfoVo> findMemberDataInfoOneRealInPage(Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
    
    String selectTotalAmountUsdtBForDataInfoTwo();
    String selectTotalAmountUsdtSForDataInfoTwo();
    String selectTotalAmountUsdtCZForDataInfoTwo();
    String selectTotalAmountUsdtTXForDataInfoTwo();
    String selectReturnMoneyForDataInfoTwo();
    String selectClosingpriceForDataInfoTwo();
    String selectSellClosingpriceForDataInfoTwo();
    String selectRewardratioForDataInfoTwo();
    String selectSFCCForDataInfoTwo();
    String selectBBZHForDataInfoTwo();
    String selectHYZHForDataInfoTwo();
    String selectprepriceForDataInfoTwo();
    String selectBBZCForDataInfoTwo();
    String selectHYZCForDataInfoTwo();
    String selectDLZCForDataInfoTwo();
    IPage<MemberDataInfoVo> findMemberDataInfoTwoInPage(Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
 
    String selectTotalAmountUsdtBForDataInfoTwoReal();
    String selectTotalAmountUsdtSForDataInfoTwoReal();
    String selectTotalAmountUsdtCZForDataInfoTwoReal();
    String selectTotalAmountUsdtTXForDataInfoTwoReal();
    String selectReturnMoneyForDataInfoTwoReal();
    String selectClosingpriceForDataInfoTwoReal();
    String selectSellClosingpriceForDataInfoTwoReal();
    String selectRewardratioForDataInfoTwoReal();
    String selectSFCCForDataInfoTwoReal();
    String selectBBZHForDataInfoTwoReal();
    String selectHYZHForDataInfoTwoReal();
    String selectprepriceForDataInfoTwoReal();
    String selectBBZCForDataInfoTwoReal();
    String selectHYZCForDataInfoTwoReal();
    String selectDLZCForDataInfoTwoReal();
    IPage<MemberDataInfoVo> findMemberDataInfoTwoRealInPage(Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
    
    String selectTotalAmountUsdtBForDataInfoTee();
    String selectTotalAmountUsdtSForDataInfoTee();
    String selectTotalAmountUsdtCZForDataInfoTee();
    String selectTotalAmountUsdtTXForDataInfoTee();
    String selectReturnMoneyForDataInfoTee();
    String selectClosingpriceForDataInfoTee();
    String selectSellClosingpriceForDataInfoTee();
    String selectRewardratioForDataInfoTee();
    String selectSFCCForDataInfoTee();
    String selectBBZHForDataInfoTee();
    String selectHYZHForDataInfoTee();
    String selectprepriceForDataInfoTee();
    String selectBBZCForDataInfoTee();
    String selectHYZCForDataInfoTee();
    String selectDLZCForDataInfoTee();
    IPage<MemberDataInfoVo> findMemberDataInfoTeeInPage(Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
 
    String selectTotalAmountUsdtBForDataInfoTeeReal();
    String selectTotalAmountUsdtSForDataInfoTeeReal();
    String selectTotalAmountUsdtCZForDataInfoTeeReal();
    String selectTotalAmountUsdtTXForDataInfoTeeReal();
    String selectReturnMoneyForDataInfoTeeReal();
    String selectClosingpriceForDataInfoTeeReal();
    String selectSellClosingpriceForDataInfoTeeReal();
    String selectRewardratioForDataInfoTeeReal();
    String selectSFCCForDataInfoTeeReal();
    String selectBBZHForDataInfoTeeReal();
    String selectHYZHForDataInfoTeeReal();
    String selectprepriceForDataInfoTeeReal();
    String selectBBZCForDataInfoTeeReal();
    String selectHYZCForDataInfoTeeReal();
    String selectDLZCForDataInfoTeeReal();
    IPage<MemberDataInfoVo> findMemberDataInfoTeeRealInPage(Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
    
    String selectTotalAmountUsdtBForDataInfoOneAll();
    String selectTotalAmountUsdtSForDataInfoOneAll();
    String selectTotalAmountUsdtCZForDataInfoOneAll();
    String selectTotalAmountUsdtTXForDataInfoOneAll();
    String selectReturnMoneyForDataInfoOneAll();
    String selectClosingpriceForDataInfoOneAll();
    String selectSellClosingpriceForDataInfoOneAll();
    String selectRewardratioForDataInfoOneAll();
    String selectSFCCForDataInfoOneAll();
    String selectBBZHForDataInfoOneAll();
    String selectHYZHForDataInfoOneAll();
    String selectprepriceForDataInfoOneAll();
    String selectBBZCForDataInfoOneAll();
    String selectHYZCForDataInfoOneAll();
    String selectDLZCForDataInfoOneAll();
    IPage<MemberDataInfoVo> findMemberDataInfoOneAllInPage(Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
    
    String selectTotalAmountUsdtBForDataInfoOneAllReal();
    String selectTotalAmountUsdtSForDataInfoOneAllReal();
    String selectTotalAmountUsdtCZForDataInfoOneAllReal();
    String selectTotalAmountUsdtTXForDataInfoOneAllReal();
    String selectReturnMoneyForDataInfoOneAllReal();
    String selectClosingpriceForDataInfoOneAllReal();
    String selectSellClosingpriceForDataInfoOneAllReal();
    String selectRewardratioForDataInfoOneAllReal();
    String selectSFCCForDataInfoOneAllReal();
    String selectBBZHForDataInfoOneAllReal();
    String selectHYZHForDataInfoOneAllReal();
    String selectprepriceForDataInfoOneAllReal();
    String selectBBZCForDataInfoOneAllReal();
    String selectHYZCForDataInfoOneAllReal();
    String selectDLZCForDataInfoOneAllReal();
 
    String selectWalletAvailableBalanceBymemberId(@Param("memberId")Long memberId);
 
    String selectWalletTotalBalanceBymemberId(@Param("memberId")Long memberId);
 
    String selectWalletFrozenBalanceBymemberId(@Param("memberId")Long memberId);
 
    IPage<MemberAccountMoneyChangeEntity> memberBoBiList(Page<MemberAccountMoneyChangeEntity> page,
            @Param("record")MemberAccountMoneyChangeEntity memberAccountMoneyChangeEntity);
 
    MemberEntity selectMemberByAccount(@Param("account")String account);
    IPage<MemberDataInfoVo> findMemberDataInfoOneAllRealInPage(Page<MemberEntity> page, @Param("record")MemberEntity memberEntity);
    String selectClosingpriceForAllDataInfo(@Param("record")MemberEntity memberEntity);
    String selectTotalAmountUsdtBForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectTotalAmountUsdtSForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectTotalAmountUsdtCZForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectTotalAmountUsdtTXForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectReturnMoneyForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectRewardratioForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectSFCCForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectBBZHForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectHYZHForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectprepriceForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectBBZCForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectHYZCForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectDLZCForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectSellClosingpriceForForAllDataInfo(@Param("record")MemberEntity memberEntity);
 
    String selectMemberWalletContractByMemberId(@Param("memberId")long memberId);
 
 
    MemberEntity selectMemberInfoByQueryKey(@Param("queryKey") String queryKey);
}