| 123456789101112131415161718 |
- using System.Collections.Generic;
- namespace Admin.NET.Core
- {
- /// <summary>
- /// 实体种子数据接口
- /// </summary>
- /// <typeparam name="TEntity"></typeparam>
- public interface ISqlSugarEntitySeedData<TEntity>
- where TEntity : class, new()
- {
- /// <summary>
- /// 种子数据
- /// </summary>
- /// <returns></returns>
- IEnumerable<TEntity> HasData();
- }
- }
|