12345678910111213 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Configuration;
- using TEAMModelOS.SDK.DI;
- namespace TEAMModelOS.Service.Services.Learn.Interfaces
- {
- public interface ITimerWorkService : IBusinessService
- {
- public void TimerWork<T>(long startTime, int status,Dictionary<string, object> dict ) where T : ID;
- }
- }
|