Helius
2021-05-25 2d398a2bbd4a210ffd885f0b0b0a0f99edd84707
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
package com.xcong.excoin.modules.yunding.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.modules.yunding.dto.*;
import com.xcong.excoin.modules.yunding.entity.YdOrderEntity;
 
public interface YunDingService extends IService<YdOrderEntity> {
 
    Result findAllInfo();
 
    Result getProductList(YdProductListDto ydProductListDto);
 
    Result findProductInfoById(Long id);
 
    Result getBalance();
 
    Result payProduct(PayProductDto payProductDto);
 
    Result getOrderList(YdOrderListDto ydOrderListDto);
 
    Result findOrderAllInfo();
 
    Result getOrderInfo(Long id);
 
    Result changeUsdt();
 
    Result insureChangeUsdt(InsureChangeUsdtDto insureChangeUsdtdto);
 
    Result getAgentList(YdAgentDto ydAgentDto);
 
    Result bugAgentLevel(BugAgentLeveldto bugAgentLeveldto);
 
    Result getXchPrice();
 
    Result getTeamList(TeamInfoDto teamInfoDto);
}