using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace DocumentServiceApi.InitQMessage
|
{
|
/// <summary>
|
/// 消息结构定义
|
/// </summary>
|
public static class INITQMessageDefine
|
{
|
/// <summary>
|
/// 购入Oder消息
|
/// </summary>
|
public const string InitTenantOder = "DocumentServiceAPI_OderINIT";
|
|
/// <summary>
|
/// 撤单
|
/// </summary>
|
public const string DecTenantOder = "DocumentServiceAPI_DecOderINIT";
|
|
/// <summary>
|
/// 定时队列消息发序列,在这里转发
|
/// </summary>
|
public const string DTSendMessageList = "DocumentServiceAPI_MessageList";
|
|
/// <summary>
|
/// 将消息发送到用户中心执行消息发送 跟用户中心定义一致
|
/// </summary>
|
public const string DTSendMessage = "MSG_AND_SMSMSG";
|
|
|
|
}
|
}
|