Helius
2021-05-20 0469ade9be848d97eefb92f3e584441d89e6b69d
src/main/java/com/xcong/excoin/modules/yunding/service/YunDingService.java
@@ -1,8 +1,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);
}