| | |
| | | package cc.mrbird.febs.rabbit.enumerates; |
| | | |
| | | import cc.mrbird.febs.rabbit.constants.QueueConstants; |
| | | import lombok.Getter; |
| | | |
| | | @Getter |
| | | public enum RabbitQueueEnum { |
| | | |
| | | FCMPAY_FCM_NFT_EXCHANGE("exchange_fcm_nft_exchange", |
| | | "route_key_fcm_nft_exchange", |
| | | QueueConstants.QUEUE_FCM_NFT_EXCHANGE), |
| | | /** |
| | | * 机器人自动抢红包 |
| | | */ |
| | | FCMPAY_BUY_TIME("exchange_fcm_buy_time", |
| | | "route_key_fcm_buy_time", |
| | | QueueConstants.QUEUE_FCMPAY_BUY_TIME), |
| | | FCMPAY_BUY_TIME_TTL("exchange_fcm_buy_time_ttl", |
| | | "route_key_fcm_buy_time_ttl", |
| | | QueueConstants.QUEUE_FCMPAY_BUY_TIME_TTL), |
| | | |
| | | DEFAULT("hlm_exchange_default", |
| | | "hlm_route_key_default", |
| | |
| | | "hlm_route_key_force_voucher_sale", |
| | | "hlm_queue_force_voucher_sale"); |
| | | |
| | | |
| | | |
| | | private String exchange; |
| | | |
| | | private String route; |