IRepositorie.cs 389 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace Host.Repositories
  6. {
  7. public interface IRepositorie
  8. {
  9. /// <summary>
  10. /// 初始化表结构
  11. /// </summary>
  12. /// <returns></returns>
  13. Task<int> InitTable();
  14. Task<bool> RemoveErrLogAsync(string jobGroup, string jobName);
  15. }
  16. }