using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Host.Repositories { public interface IRepositorie { /// /// 初始化表结构 /// /// Task InitTable(); Task RemoveErrLogAsync(string jobGroup, string jobName); } }