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