Helius
2021-06-10 e13b1f9d6817a29f528f70493685371ae4004eb7
src/test/java/com/xcong/excoin/OtcTest.java
@@ -9,6 +9,7 @@
import com.xcong.excoin.modules.otc.dao.OtcMarketBussinessDao;
import com.xcong.excoin.modules.otc.entity.OtcMarketBussiness;
import com.xcong.excoin.quartz.job.OtcOrderJob;
import com.xcong.excoin.rabbit.consumer.OtcConsumer;
import com.xcong.excoin.rabbit.producer.OtcProducter;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
@@ -102,4 +103,21 @@
            memberPaymentMethodDao.insert(memberPaymentMethodEntity);
        }
    }
    @Test
    public void bigdecimalTest() {
        BigDecimal one = BigDecimal.valueOf(6.39);
        BigDecimal two = BigDecimal.valueOf(3129.860025);
        System.out.println(one.multiply(two).setScale(2, BigDecimal.ROUND_DOWN));
    }
//    @Autowired
//    private OtcConsumer otcConsumer;
    @Test
    public void returnMoneyTest() {
//        otcConsumer.orderReturn("20210605446780002");
//        otcProducter.sendOrderReturn("20210605446780002");
    }
}