| | |
| | | /**层级奖励分发消息 |
| | | * @param id |
| | | */ |
| | | @RabbitListener(queues = QueueConstants.QUEUE_LEVEL_PROFIT) |
| | | public void levelProfit(Long id) { |
| | | log.info("消费层级奖励分发消息:{}", id); |
| | | dappSystemService.levelProfit(id); |
| | | } |
| | | // @RabbitListener(queues = QueueConstants.QUEUE_LEVEL_PROFIT) |
| | | // public void levelProfit(Long id) { |
| | | // log.info("消费层级奖励分发消息:{}", id); |
| | | // dappSystemService.levelProfit(id); |
| | | // } |
| | | |
| | | /**计算是否有人出局分发消息 |
| | | * @param id |
| | | */ |
| | | @RabbitListener(queues = QueueConstants.QUEUE_MEMBER_OUT) |
| | | public void memberOut(Long id) { |
| | | log.info("消费计算是否有人出局:{}", id); |
| | | dappSystemService.memberOut(id); |
| | | } |
| | | // @RabbitListener(queues = QueueConstants.QUEUE_MEMBER_OUT) |
| | | // public void memberOut(Long id) { |
| | | // log.info("消费计算是否有人出局:{}", id); |
| | | // dappSystemService.memberOut(id); |
| | | // } |
| | | |
| | | /**转账拨币 |
| | | * @param id |
| | |
| | | /**转账拨币 |
| | | * @param id |
| | | */ |
| | | @RabbitListener(queues = QueueConstants.QUEUE_BNB_TRANSFER_TEST) |
| | | public void bnbTransferTest(Long id) { |
| | | log.info("消费转账拨币第二步:{}", id); |
| | | dappSystemService.bnbTransferTest(id); |
| | | } |
| | | |
| | | /**代理升级 |
| | | * @param id |
| | | */ |
| | | @RabbitListener(queues = QueueConstants.QUEUE_BNB_AGENT_UP) |
| | | public void agentUp(Long id) { |
| | | log.info("代理升级:{}", id); |
| | | dappSystemService.agentUp(id); |
| | | } |
| | | // @RabbitListener(queues = QueueConstants.QUEUE_BNB_TRANSFER_TEST) |
| | | // public void bnbTransferTest(Long id) { |
| | | // log.info("消费转账拨币第二步:{}", id); |
| | | // dappSystemService.bnbTransferTest(id); |
| | | // } |
| | | // |
| | | // /**代理升级 |
| | | // * @param id |
| | | // */ |
| | | // @RabbitListener(queues = QueueConstants.QUEUE_BNB_AGENT_UP) |
| | | // public void agentUp(Long id) { |
| | | // log.info("代理升级:{}", id); |
| | | // dappSystemService.agentUp(id); |
| | | // } |
| | | } |