package com.xcong.excoin;
|
|
|
import com.xcong.excoin.modules.yunding.service.XchProfitService;
|
import org.junit.jupiter.api.Test;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
@SpringBootTest
|
public class XchTest {
|
|
@Autowired
|
private XchProfitService xchProfitService;
|
|
@Test
|
public void usdtReturnTest() {
|
xchProfitService.agentProfitDistributor();
|
}
|
}
|