xiaoyong931011
2023-06-05 428fcf8bc1dfe7785634eee4f951fa856006cfe8
src/main/java/cc/mrbird/febs/rabbit/producer/ChainProducer.java
@@ -87,8 +87,115 @@
     * 转账拨币
     */
    public void sendBnbTransferMsg(Long id) {
        log.info("转账拨币:{}", id);
        log.info("开始转账拨币第一步:{}", id);
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        rabbitTemplate.convertAndSend(QueueEnum.BNB_TRANSFER.getExchange(), QueueEnum.BNB_TRANSFER.getRoute(), id, correlationData);
    }
    /**
     * 转账拨币
     */
    public void sendBnbTransferTestMsg(Long id) {
        log.info("开始转账拨币第二步:{}", id);
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        rabbitTemplate.convertAndSend(QueueEnum.BNB_TRANSFER_TEST.getExchange(), QueueEnum.BNB_TRANSFER_TEST.getRoute(), id, correlationData);
    }
    /**
     * 代理升级
     */
    public void sendAgentUpMsg(Long id) {
        log.info("代理升级:{}", id);
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        rabbitTemplate.convertAndSend(QueueEnum.BNB_AGENT_UP.getExchange(), QueueEnum.BNB_AGENT_UP.getRoute(), id, correlationData);
    }
    /**
     *  A 入金的消息
     * @param id
     */
    public void sendAntACoinInMsg(Long id) {
        log.info("开始---A 入金的消息:{}", id);
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        rabbitTemplate.convertAndSend(QueueEnum.ANT_A_CION_IN.getExchange(), QueueEnum.ANT_A_CION_IN.getRoute(), id, correlationData);
    }
    /**
     *  A 入金,转入A底池
     * @param id
     */
    public void sendAntACoinInAPoolMsg(Long id) {
        log.info("开始---A 入金,转入A底池:{}", id);
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        rabbitTemplate.convertAndSend(QueueEnum.ANT_A_CION_IN_A_POOL.getExchange(), QueueEnum.ANT_A_CION_IN_A_POOL.getRoute(), id, correlationData);
    }
    /**
     *  A 入金,转入B底池
     * @param id
     */
    public void sendAntACoinInBPoolMsg(Long id) {
        log.info("开始---A 入金,转入B底池:{}", id);
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        rabbitTemplate.convertAndSend(QueueEnum.ANT_A_CION_IN_B_POOL.getExchange(), QueueEnum.ANT_A_CION_IN_B_POOL.getRoute(), id, correlationData);
    }
    /**
     *  A 入金,5%节点
     * @param id
     */
    public void sendAntACoinInNodeMsg(Long id) {
        log.info("开始---A 入金,转入5%节点:{}", id);
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        rabbitTemplate.convertAndSend(QueueEnum.ANT_A_CION_IN_NODE.getExchange(), QueueEnum.ANT_A_CION_IN_NODE.getRoute(), id, correlationData);
    }
    /**
     *  A 入金,10%极差奖
     * @param id
     */
    public void sendAntACoinInLevelMsg(Long id) {
        log.info("开始---A 入金,转入10%极差奖:{}", id);
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        rabbitTemplate.convertAndSend(QueueEnum.ANT_A_CION_IN_LEVEL.getExchange(), QueueEnum.ANT_A_CION_IN_LEVEL.getRoute(), id, correlationData);
    }
    /**
     *  A 提现
     * @param id
     */
    public void sendAntACoinOutMsg(Long id) {
        log.info("开始---A 提现:{}", id);
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        rabbitTemplate.convertAndSend(QueueEnum.ANT_A_CION_OUT.getExchange(), QueueEnum.ANT_A_CION_OUT.getRoute(), id, correlationData);
    }
    /**
     *  A 代理升级
     * @param memberId
     */
    public void sendAntMemberLevelMsg(Long memberId) {
        log.info("开始---A 代理升级:{}", memberId);
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        rabbitTemplate.convertAndSend(QueueEnum.ANT_MEMBER_LEVEL.getExchange(), QueueEnum.ANT_MEMBER_LEVEL.getRoute(), memberId, correlationData);
    }
    /**
     *  A k线数据
     * @param type
     */
    public void sendAntKLineMsg(int type) {
        log.info("开始---A k线数据:{}", type);
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        rabbitTemplate.convertAndSend(QueueEnum.ANT_K_LINE.getExchange(), QueueEnum.ANT_K_LINE.getRoute(), type, correlationData);
    }
    /**
     * 转账拨币
     */
    public void sendAntKLineABMsg(Long id) {
        log.info("开始转账拨币第二步:{}", id);
        CorrelationData correlationData = new CorrelationData(UUID.randomUUID().toString());
        rabbitTemplate.convertAndSend(QueueEnum.ANT_K_LINE_AB.getExchange(), QueueEnum.ANT_K_LINE_AB.getRoute(), id, correlationData);
    }
}