Helius
2021-06-21 5812839f3e23bb09e1a9b100b63273a646155709
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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";
 
 
}