24 lines
1.1 KiB
C#
24 lines
1.1 KiB
C#
|
|
|
|
namespace YY.Admin.Core.SeedData;
|
|
|
|
/// <summary>
|
|
/// 系统租户表种子数据
|
|
/// </summary>
|
|
public class SysTenantSeedData : ISqlSugarEntitySeedData<SysTenant>
|
|
{
|
|
/// <summary>
|
|
/// 种子数据
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public IEnumerable<SysTenant> HasData()
|
|
{
|
|
var userList = new SysUserSeedData().HasData().ToList();
|
|
var admin = userList.First(u => u.Account == "admin");
|
|
return new[]
|
|
{
|
|
new SysTenant{ Id=SqlSugarConst.DefaultTenantId, OrgId=SqlSugarConst.DefaultTenantId, UserId=admin.Id, Host="gitee.com", TenantType=TenantTypeEnum.Id, DbType=DbType.Sqlite,
|
|
Connection="", ConfigId=SqlSugarConst.MainConfigId, Logo="/upload/logo.png", Title="Admin.NET", ViceTitle="Admin.NET", ViceDesc="站在巨人肩膀上的 .NET 通用权限开发框架", Watermark="Admin.NET", Copyright="Copyright \u00a9 2021-present Admin.NET All rights reserved.", Icp="省ICP备12345678号", IcpUrl="https://beian.miit.gov.cn", Remark="系统默认", CreateTime=DateTime.Parse("2022-02-10 00:00:00") },
|
|
};
|
|
}
|
|
} |