| | |
| | | package cc.mrbird.febs.rabbit.enumerates; |
| | | |
| | | import cc.mrbird.febs.rabbit.constants.QueueConstants; |
| | | import lombok.Getter; |
| | | |
| | | @Getter |
| | | public enum RabbitQueueEnum { |
| | | //买单取消 |
| | | FCMPAY_FCM_ORDER_BUY_CANCEL("exchange_fcm_order_buy_cancel", |
| | | "route_key_fcm_order_buy_cancel", |
| | | QueueConstants.QUEUE_FCM_ORDER_BUY_CANCEL), |
| | | //卖单用户确认 |
| | | FCMPAY_FCM_ORDER_SELL_INSURE("exchange_fcm_order_sell_insure", |
| | | "route_key_fcm_order_sell_insure", |
| | | QueueConstants.QUEUE_FCM_ORDER_SELL_INSURE), |
| | | |
| | | 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; |