namespace Admin.NET.Core; /// /// 系统租户表种子数据 /// public class SysTenantSeedData : ISqlSugarEntitySeedData { /// /// 种子数据 /// /// [IgnoreUpdate] public IEnumerable HasData() { return new[] { new SysTenant{ Id=123456780000000, OrgId=252885263003720, UserId=252885263000000, Host="www.dilon.vip", 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") }, }; } }