liaoxujun@qq.com
2023-09-20 2d04b2f19d201ff10ed76c1773235488e9ab7628
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
27
28
29
30
31
32
33
34
35
36
37
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";
 
 
 
    }
}