using InitQ.Abstractions;
|
using InitQ.Attributes;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace DocumentServiceApi.InitQMessage
|
{
|
/// <summary>
|
/// 消息接收处理函数
|
/// </summary>
|
public class MessageReceive: IRedisSubscribe
|
{
|
/// <summary>
|
/// 初始化订单处理
|
/// </summary>
|
/// <param name="msg"></param>
|
/// <returns></returns>
|
|
[Subscribe(INITQMessageDefine.InitTentOder)]
|
private async Task InitTenantOder(string msg)
|
{
|
|
}
|
|
}
|
}
|