package com.xcong.excoin.modules.yunding.service;
|
|
import java.math.BigDecimal;
|
|
public interface XchProfitService {
|
|
void autoBeAgent(Long id);
|
|
void agentUsdtProfitDistributor();
|
|
void usdtProfitDistributorByOrderId(Long id);
|
|
void xchProfitDistributor(BigDecimal totalPrifit);
|
|
}
|