namespace Admin.NET.Core;
///
/// 系统租户表种子数据
///
public class SysTenantSeedData : ISqlSugarEntitySeedData
{
///
/// 种子数据
///
///
[IgnoreUpdate]
public IEnumerable HasData()
{
return new[]
{
new SysTenant{ Id=123456780000000, Name="系统默认", AdminName="Administrator", Host="www.dilon.vip", Email="zuohuaijun@163.com", Phone="18020030720", TenantType=TenantTypeEnum.Id, DbType=SqlSugar.DbType.Sqlite, Connection="DataSource=./Admin.NET.db", ConfigId=SqlSugarConst.ConfigId, Remark="系统默认", CreateTime=DateTime.Parse("2022-02-10 00:00:00") },
};
}
}