ISqlSugarEntitySeedData.cs 339 B

123456789101112131415
  1. namespace Admin.NET.Core;
  2. /// <summary>
  3. /// 实体种子数据接口
  4. /// </summary>
  5. /// <typeparam name="TEntity"></typeparam>
  6. public interface ISqlSugarEntitySeedData<TEntity>
  7. where TEntity : class, new()
  8. {
  9. /// <summary>
  10. /// 种子数据
  11. /// </summary>
  12. /// <returns></returns>
  13. IEnumerable<TEntity> HasData();
  14. }