package com.xzx.log.constants;
|
|
public class MqConstants {
|
|
//账号操作记录队列
|
public static final String ACCOUNT_LOG_QUEUE = "account_log_queue";
|
//接口操作记录队列
|
public static final String INTEFACE_ADMIN_LOG_QUEUE = "inteface_admin_log_queue";
|
//小程序或APP操作记录队列
|
public static final String OPERATION_APP_LOG_QUEUE="operation_app_log_queue";
|
//后台操作记录队列
|
public static final String OPERATION_LOG_QUEUE="operation_log_queue";
|
//订单操作记录队列
|
public static final String ORDER_OPERATION_LOG_QUEUE="order_operation_log_queue";
|
//支付操作记录队列
|
public static final String PAY_INFO_LOG_QUEUE="pay_info_log_queue";
|
//小程序报错记录队列
|
public static final String SYS_PROGRAM_LOG_QUEUE="sys_program_log_queue";
|
//交易流水记录
|
public static final String TRADE_ACCOUNT_LOG_QUEUE="trade_account_log_queue";
|
//死信队列
|
public final static String DEAD_QUEUE = "dead_queue";
|
|
|
//错误队列缓存
|
public final static String ERR_QUEUE_REDIS = "xzx:log:errQueue";
|
|
|
}
|