平安校园
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ISqlSugarEntitySeedData.cs 355 B

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