using System.Collections.Generic; namespace Admin.NET.Core { /// /// 实体种子数据接口 /// /// public interface ISqlSugarEntitySeedData where TEntity : class, new() { /// /// 种子数据 /// /// IEnumerable HasData(); } }