feat:添加种子数据

This commit is contained in:
陈淳
2023-04-19 16:35:47 +08:00
parent 654c7d650a
commit 2fd861025a
12 changed files with 2067 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Infrastructure.Data.DataSeeds
{
public interface IDataSeed
{
Task<bool> InvokerAsync();
}
public interface IDataSeed<TEntity> : IDataSeed
{
}
}