xiaoyong931011
2023-10-27 a7cdff75aa70b55a32c8c3d7ff55085647424c92
src/test/java/cc/mrbird/febs/ProfitTest.java
@@ -1,6 +1,7 @@
package cc.mrbird.febs;
import cc.mrbird.febs.mall.service.IAgentService;
import cc.mrbird.febs.rabbit.producter.AgentProducer;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@@ -15,29 +16,35 @@
public class ProfitTest {
    public static void main(String[] args) {
        BigDecimal bigDecimal = new BigDecimal("624377928.99960000");
        BigDecimal bigDecimal1 = new BigDecimal("975728618.82800000");
        BigDecimal add = bigDecimal.add(bigDecimal1);
        BigDecimal price = new BigDecimal("0.000243745811");
        BigDecimal bigDecimal2 = add.multiply(price).setScale(2, BigDecimal.ROUND_DOWN);
//        BigDecimal divide = bigDecimal.divide(bigDecimal1, 8, BigDecimal.ROUND_DOWN);
        BigDecimal bigDecimal = new BigDecimal("290000");
        BigDecimal bigDecimal1 = new BigDecimal("0.000244427982");
        BigDecimal bigDecimal2 = bigDecimal.multiply(bigDecimal1).setScale(2, BigDecimal.ROUND_DOWN);
        BigDecimal divide = bigDecimal.divide(bigDecimal1, 8, BigDecimal.ROUND_DOWN);
        System.out.println(bigDecimal2);
        System.out.println(divide);
    }
    /**
     * 22977.21   回流的30%
     *
     * 344,632.0667 实际入金
     */
//    @Autowired
//    private AgentConsumer agentConsumer;
//
//    @Autowired
//    private IAgentService agentService;
    @Autowired
    private AgentProducer agentProducer;
////
////    @Autowired
////    private IMemberProfitService memberProfitService;
////
//    @Test
//    public void dynamicProfit() {
//        agentService.returnMoneyToAgent(3323L);
////        agentService.autoUpAgentLevel(640L);
//    }
    @Test
    public void dynamicProfit() {
        for(int i =0;i<400;i++){
            agentProducer.sendAddRobotMsg("32074345");
        }
//        agentService.autoUpAgentLevel(640L);
    }
//    @Test
//    public void agentProfit() {
//        memberProfitService.agentProfit(null);