平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
355 B

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