mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
rabbitMQ
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
package com.jsowell.common.constant;
|
||||
|
||||
/**
|
||||
* RabbitMQ常量
|
||||
*/
|
||||
public class RabbitConstants {
|
||||
// 交换机名称
|
||||
public static final String YKC_EXCHANGE_NAME = "ykcChargingExchange";
|
||||
|
||||
// pileLogin: 充电桩登录(队列)
|
||||
public static final String QUEUE_PILE_LOGIN = "ykc.pileLogin-topic.device-group";
|
||||
|
||||
// heartBeat: 桩心跳消费(队列)
|
||||
public static final String QUEUE_HEART_BEAT = "ykc.heartBeat-topic.device-group";
|
||||
|
||||
// realtimeData: 桩实时数据消费(队列)
|
||||
public static final String QUEUE_REALTIME_DATA = "ykc.realtimeData-topic.device-group";
|
||||
|
||||
// priceSender: 桩价格下发(队列)
|
||||
public static final String QUEUE_PRICE_SENDER = "ykc.priceSender-topic.device-group";
|
||||
|
||||
// stationPriceSender: 充电基准价格推送至用户运营商(队列)
|
||||
public static final String QUEUE_STATION_PRICE_SENDER = "ykc.stationPriceSender-topic.device-group";
|
||||
|
||||
// connectorStatusNotify: 充电桩状态推送至用户运营商(队列)
|
||||
public static final String QUEUE_CONNECTOR_STATUS_NOTIFY = "ykc.connectorStatusNotify-topic.device-group";
|
||||
|
||||
// chargingStatusNotify: 充电订单状态数据推送至用户运营商(队列)
|
||||
public static final String QUEUE_CHARGING_STATUS_NOTIFY = "ykc.chargingStatusNotify-topic.device-group";
|
||||
|
||||
// chargeOrderData: 充电结算订单推送至用户运营商(队列)
|
||||
public static final String QUEUE_CHARGE_ORDER_DATA = "ykc.chargeOrderData-topic.device-group";
|
||||
|
||||
// upStationStatus: 消费充电桩状态推送
|
||||
public static final String QUEUE_UP_STATION_STATUS = "ykc.upStationStatus-topic.userplat-group";
|
||||
|
||||
// upEquipChargeStatus: 消费充电订单状态数据
|
||||
public static final String QUEUE_UP_EQUIP_CHARGE_STATUS = "ykc.upEquipChargeStatus-topic.userplat-group";
|
||||
|
||||
// upChargeOrderInfo: 消费充电结算订单
|
||||
public static final String QUEUE_UP_CHARGE_ORDER_INFO = "ykc.upChargeOrderInfo-topic.userplat-group";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user