using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace zzz.Services { /// /// 种子数据 接口 /// public interface IDBSeed { /// /// 种子数据 /// /// /// /// //Task SeedAsync(ISqlSugarClient myContext, string WebRootPath); /// /// 同步表结构 /// /// /// Task CreateTable(string tableName); } }