package com.matrix.system.shopXcx.mqTask;
|
|
/**
|
* 异步任务名称
|
*/
|
public interface AsyncMessageRouting {
|
|
String CREATE_VIP = "CREATE_VIP";
|
|
String CREATE_ORDER = "CREATE_ORDER";
|
String SALES_ORDER = "SALES_ORDER";
|
String SCORE_ORDER = "SCORE_ORDER";
|
String DINGDING_NOTICE = "DINGDING_NOTICE" ;
|
/**
|
* 发送微信消息
|
*/
|
String SEND_TEMPLATE_MSG = "SEND_TEMPLATE_MSG";
|
|
/**
|
* 发送小程序统一模板消息
|
*/
|
String SEND_UNIFORM_TEMPLATE_MSG = "SEND_UNIFORM_TEMPLATE_MSG";
|
/**
|
* 订单退款
|
*/
|
String SHOP_ORDER_REFUND = "SHOP_ORDER_REFUND";
|
|
/**
|
* 订单出库
|
*/
|
String ORDER_OUT_SOTORE = "ORDER_OUT_SOTORE";
|
}
|