17 lines
380 B
C#
17 lines
380 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WaterCloud.DataBase;
|
|
|
|
/// <summary>
|
|
/// 实体种子数据接口
|
|
/// </summary>
|
|
/// <typeparam name="TEntity"></typeparam>
|
|
public interface ISqlSugarEntitySeedData<TEntity>
|
|
where TEntity : class, new()
|
|
{
|
|
/// <summary>
|
|
/// 种子数据
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
IEnumerable<TEntity> SeedData();
|
|
} |