xiaoyong931011
2021-06-22 38609ee05255ce5c36f308fe8d595555a86f9ba3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.xzx.gc.common.constant;
 
public class MqConstants {
 
    //账号操作记录队列
//    public static final String ACCOUNT_LOG_QUEUE = "account_log_queue";
    //交易流水记录
    public static final String TRADE_ACCOUNT_LOG_QUEUE="trade_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 PAY_INFO_LOG_QUEUE="pay_info_log_queue";
    //订单操作记录队列
    public static final String ORDER_OPERATION_LOG_QUEUE="order_operation_log_queue";
    //小程序报错记录队列
    public static final String SYS_PROGRAM_LOG_QUEUE="sys_program_log_queue";
 
}