平安校园
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

25 wiersze
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. }