fix
Helius
2022-02-25 41c47759308c7dfee343389723489f386446d7d9
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
package com.xcong.excoin.modules.coin.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.modules.coin.entity.ZhiYaEntity;
import com.xcong.excoin.modules.coin.parameter.dto.RecordsPageDto;
import com.xcong.excoin.modules.coin.parameter.dto.ZhiyaRewardRecordsPageDto;
 
import java.math.BigDecimal;
 
public interface ZhiyaService extends IService<ZhiYaEntity> {
 
    Result usdtToGusd(BigDecimal balance, Integer type);
 
    Result zhiYaGusd(BigDecimal balance);
 
    Result shuhuiGusd(BigDecimal balance,Long id);
 
    Result findMemberGusdInfo();
 
    Result getZhiyaRecords(RecordsPageDto recordsPageDto);
 
    Result getusdtToGusdRecords(RecordsPageDto recordsPageDto);
 
    void grantZhiyaAmount();
 
    Result getZhiyaReward(ZhiyaRewardRecordsPageDto recordsPageDto);
}