12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using TEAMModelOS.SDK.Context.Configuration;
- namespace TEAMModelOS.Service.Services.Learn.Interfaces
- {
- public interface IServiceBusService : IBusinessService
- {
- public Task<long> SendMessage<T>(string TopicName, string info, long startTime,int status);
-
- }
- }
|