You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
524 B

  1. namespace Learun.Application.Extention.TaskScheduling
  2. {
  3. /// <summary>
  4. /// 版 本 Learun-ADMS V7.0.3 力软敏捷开发框架
  5. /// Copyright (c) 2013-2018 上海力软信息技术有限公司
  6. /// 创建人:力软-框架开发组
  7. /// 日 期:2019.01.09
  8. /// 描 述:任务调度器执行的方法需要继承的接口
  9. /// </summary>
  10. public interface ITsMethod
  11. {
  12. /// <summary>
  13. /// 任务调度器执行的方法
  14. /// </summary>
  15. void Execute();
  16. }
  17. }