xiaoyong931011
2021-03-15 39ae83445d16d37a3c02e0dfdeb1be15eac0e2c2
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
package com.matrix.system.shopXcx.mqTask;
 
/**
 * 异步任务名称
 */
public interface MQTaskRouting {
 
    String CREATE_VIP = "CREATE_VIP";
 
    String CREATE_ORDER = "CREATE_ORDER";
    String SALES_ORDER = "SALES_ORDER";
    /**
     * 发送微信消息
     */
    String SEND_TEMPLATE_MSG = "SEND_TEMPLATE_MSG";
 
    /**
     * 发送小程序统一模板消息
     */
    String SEND_UNIFORM_TEMPLATE_MSG = "SEND_UNIFORM_TEMPLATE_MSG";
 
    /**
     * 订单出库
     */
    String ORDER_OUT_SOTORE = "ORDER_OUT_SOTORE";
}