namespace Admin.NET.Core; /// /// 系统租户表种子数据 /// public class SysTenantSeedData : ISqlSugarEntitySeedData { /// /// 种子数据 /// /// [IgnoreUpdate] public IEnumerable HasData() { var defaultDbConfig = App.GetOptions().ConnectionConfigs[0]; return new[] { new SysTenant{ Id=1300000000001, OrgId=1300000000101, UserId=1300000000111, Host="www.dilon.vip", TenantType=TenantTypeEnum.Id, DbType=defaultDbConfig.DbType, Connection=defaultDbConfig.ConnectionString, ConfigId=SqlSugarConst.ConfigId, Remark="系统默认", CreateTime=DateTime.Parse("2022-02-10 00:00:00") }, }; } }