Browse Source

基础设施层:数据库表初始化数据

1.Electric.EntityFrameworkCore.DbMigrations 用于迁移
2.Electric.EntityFrameworkCore 用于持久化数据
ECL142 11 months ago
parent
commit
4109937293
18 changed files with 2636 additions and 33 deletions
  1. 24 3
      src/Electric/Electric.Domain/Entities/Identity/ElePermission.cs
  2. 17 2
      src/Electric/Electric.EntityFrameworkCore.DbMigrations/Electric.EntityFrameworkCore.DbMigrations.csproj
  3. 809 0
      src/Electric/Electric.EntityFrameworkCore.DbMigrations/Migrations/20240413234821_InitDB.Designer.cs
  4. 387 0
      src/Electric/Electric.EntityFrameworkCore.DbMigrations/Migrations/20240413234821_InitDB.cs
  5. 806 0
      src/Electric/Electric.EntityFrameworkCore.DbMigrations/Migrations/ApplicationDbContextModelSnapshot.cs
  6. 24 26
      src/Electric/Electric.EntityFrameworkCore.DbMigrations/Program.cs
  7. 7 1
      src/Electric/Electric.EntityFrameworkCore.DbMigrations/appsettings.json
  8. 11 0
      src/Electric/Electric.EntityFrameworkCore/DependencyInjection/DbType.cs
  9. 81 0
      src/Electric/Electric.EntityFrameworkCore/DependencyInjection/ServiceCollectionExtensions.cs
  10. 10 0
      src/Electric/Electric.EntityFrameworkCore/Electric.EntityFrameworkCore.csproj
  11. 282 0
      src/Electric/Electric.EntityFrameworkCore/Repository/ApplicationDbContext.cs
  12. 84 0
      src/Electric/Electric.EntityFrameworkCore/Repository/EfCoreRepository.cs
  13. 11 0
      src/Electric/Electric.EntityFrameworkCore/Repository/Identity/EFCorePermissionRepository.cs
  14. 16 0
      src/Electric/Electric.EntityFrameworkCore/Repository/Identity/EFCoreRoleRepository.cs
  15. 26 0
      src/Electric/Electric.EntityFrameworkCore/Repository/Identity/EFCoreUserRepository.cs
  16. 2 1
      src/Electric/Electric.WebAPI/Electric.WebAPI.csproj
  17. 33 0
      src/Electric/Electric.WebAPI/Program.cs
  18. 6 0
      src/Electric/Electric.WebAPI/appsettings.json

+ 24 - 3
src/Electric/Electric.Domain/Entities/Identity/ElePermission.cs

@@ -62,13 +62,26 @@ namespace Electric.Domain.Entities.Identity
         /// </summary>
         public string Remark { get; set; }
 
-#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
-
+        /// <summary>
+        /// 无参构造函数
+        /// </summary>
         protected ElePermission()
-#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
         {
         }
 
+        /// <summary>
+        /// 有参构造函数
+        /// </summary>
+        /// <param name="id"></param>
+        /// <param name="parentId"></param>
+        /// <param name="name"></param>
+        /// <param name="code"></param>
+        /// <param name="permissionType"></param>
+        /// <param name="apiMethod"></param>
+        /// <param name="permissionStatus"></param>
+        /// <param name="icon"></param>
+        /// <param name="url"></param>
+        /// <param name="remark"></param>
         public ElePermission(Guid id, Guid? parentId, string name, string code, PermissionType permissionType, PermissionApiMethod apiMethod,
             PermissionStatus permissionStatus, string icon = null, string url = null, string remark = null) : base(id)
         {
@@ -96,6 +109,10 @@ namespace Electric.Domain.Entities.Identity
             ApiMethod = apiMethod.ToString();
         }
 
+        /// <summary>
+        /// 设置名称
+        /// </summary>
+        /// <param name="name"></param>
         public void SetName(string name)
         {
             Check.NotNull(name, nameof(name));
@@ -103,6 +120,10 @@ namespace Electric.Domain.Entities.Identity
             Name = name;
         }
 
+        /// <summary>
+        /// 设置编码
+        /// </summary>
+        /// <param name="code"></param>
         public void SetCode(string code)
         {
             Check.NotNull(code, nameof(code));

+ 17 - 2
src/Electric/Electric.EntityFrameworkCore.DbMigrations/Electric.EntityFrameworkCore.DbMigrations.csproj

@@ -2,9 +2,24 @@
 
   <PropertyGroup>
     <TargetFramework>net8.0</TargetFramework>
-    <Nullable>enable</Nullable>
+    <Nullable>disable</Nullable>
     <ImplicitUsings>enable</ImplicitUsings>
-    <InvariantGlobalization>true</InvariantGlobalization>
+	  <!--如果迁移时出现 一下异常时,请将InvariantGlobalization 设置为false
+	  Only the invariant culture is supported in globalization-invariant mode. 
+	  See https://aka.ms/GlobalizationInvariantMode for more information. (Parameter 'name')
+	  en-us is an invalid culture identifier.-->
+	  <InvariantGlobalization>false</InvariantGlobalization>
   </PropertyGroup>
 
+	<ItemGroup>
+		<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.4">
+			<PrivateAssets>all</PrivateAssets>
+			<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+		</PackageReference>
+	</ItemGroup>
+
+  <ItemGroup>
+    <ProjectReference Include="..\Electric.EntityFrameworkCore\Electric.EntityFrameworkCore.csproj" />
+  </ItemGroup>
+
 </Project>

+ 809 - 0
src/Electric/Electric.EntityFrameworkCore.DbMigrations/Migrations/20240413234821_InitDB.Designer.cs

@@ -0,0 +1,809 @@
+// <auto-generated />
+using System;
+using Electric.EntityFrameworkCore.Repository;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Metadata;
+using Microsoft.EntityFrameworkCore.Migrations;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+
+#nullable disable
+
+namespace Electric.EntityFrameworkCore.DbMigrations.Migrations
+{
+    [DbContext(typeof(ApplicationDbContext))]
+    [Migration("20240413234821_InitDB")]
+    partial class InitDB
+    {
+        /// <inheritdoc />
+        protected override void BuildTargetModel(ModelBuilder modelBuilder)
+        {
+#pragma warning disable 612, 618
+            modelBuilder
+                .HasAnnotation("ProductVersion", "8.0.4")
+                .HasAnnotation("Relational:MaxIdentifierLength", 128);
+
+            SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.ElePermission", b =>
+                {
+                    b.Property<Guid>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("ApiMethod")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<string>("Code")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<string>("Component")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<DateTime>("CreationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid?>("CreatorId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("Icon")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<DateTime?>("LastModificationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid>("LastModifierId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("Name")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<Guid?>("ParentId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<int>("PermissionType")
+                        .HasColumnType("int");
+
+                    b.Property<string>("Remark")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<int>("Sort")
+                        .HasColumnType("int");
+
+                    b.Property<int>("Status")
+                        .HasColumnType("int");
+
+                    b.Property<string>("Url")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.HasKey("Id");
+
+                    b.HasIndex("CreationTime");
+
+                    b.ToTable("ElePermission", (string)null);
+
+                    b.HasData(
+                        new
+                        {
+                            Id = new Guid("1d4c0cd9-47e5-4de7-a523-8d74cb7a973b"),
+                            ApiMethod = "GET",
+                            Code = "system",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1218),
+                            Icon = "el-icon-s-tools",
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "系统管理",
+                            PermissionType = 0,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("09f1720e-bdd0-448d-9572-e0d1418fc4f8"),
+                            ApiMethod = "GET",
+                            Code = "system.user",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1241),
+                            Icon = "el-icon-user-solid",
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "用户管理",
+                            ParentId = new Guid("1d4c0cd9-47e5-4de7-a523-8d74cb7a973b"),
+                            PermissionType = 0,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("f4af67e1-5614-4200-b4b9-edd5fe5d67b2"),
+                            ApiMethod = "GET",
+                            Code = "system.role",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1244),
+                            Icon = "peoples",
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "角色管理",
+                            ParentId = new Guid("1d4c0cd9-47e5-4de7-a523-8d74cb7a973b"),
+                            PermissionType = 0,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("ae19a33d-79b2-4963-a992-febfc0ef1e58"),
+                            ApiMethod = "GET",
+                            Code = "system.permission",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1245),
+                            Icon = "list",
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "菜单管理",
+                            ParentId = new Guid("1d4c0cd9-47e5-4de7-a523-8d74cb7a973b"),
+                            PermissionType = 0,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("752f03f3-b335-4ed7-a54b-2486f2c5d03e"),
+                            ApiMethod = "GET",
+                            Code = "system.rolepermission",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1248),
+                            Icon = "example",
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "角色权限",
+                            ParentId = new Guid("1d4c0cd9-47e5-4de7-a523-8d74cb7a973b"),
+                            PermissionType = 0,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("23b39087-3df6-4338-b5c9-148dcd45e234"),
+                            ApiMethod = "GET",
+                            Code = "system.user.add",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1258),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "添加",
+                            ParentId = new Guid("09f1720e-bdd0-448d-9572-e0d1418fc4f8"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("cb9468e1-3e89-432b-8f66-61493a53d5ac"),
+                            ApiMethod = "GET",
+                            Code = "system.user.edit",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1261),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "编辑",
+                            ParentId = new Guid("09f1720e-bdd0-448d-9572-e0d1418fc4f8"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("9f732d16-a64b-4248-8264-2f4e334e3e01"),
+                            ApiMethod = "GET",
+                            Code = "system.user.delete",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1264),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "删除",
+                            ParentId = new Guid("09f1720e-bdd0-448d-9572-e0d1418fc4f8"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("795ab106-a9e0-4142-948d-2a709a0fd371"),
+                            ApiMethod = "GET",
+                            Code = "system.role.add",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1267),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "添加",
+                            ParentId = new Guid("f4af67e1-5614-4200-b4b9-edd5fe5d67b2"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("14492003-3428-4a58-89a5-d91f2328b94f"),
+                            ApiMethod = "GET",
+                            Code = "system.role.edit",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1272),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "编辑",
+                            ParentId = new Guid("f4af67e1-5614-4200-b4b9-edd5fe5d67b2"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("a950864b-283c-47a0-b931-2683a2c16ed5"),
+                            ApiMethod = "GET",
+                            Code = "system.role.delete",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1274),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "删除",
+                            ParentId = new Guid("f4af67e1-5614-4200-b4b9-edd5fe5d67b2"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("58430242-3945-4b5a-b5cb-f58ab3d11fa1"),
+                            ApiMethod = "GET",
+                            Code = "system.permission.add",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1279),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "添加",
+                            ParentId = new Guid("ae19a33d-79b2-4963-a992-febfc0ef1e58"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("668c187c-011f-4c93-ada8-b9612d01b285"),
+                            ApiMethod = "GET",
+                            Code = "system.permission.edit",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1284),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "编辑",
+                            ParentId = new Guid("ae19a33d-79b2-4963-a992-febfc0ef1e58"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("139cdb4c-0b37-487b-a469-c42ca1179d73"),
+                            ApiMethod = "GET",
+                            Code = "system.permission.delete",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1286),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "删除",
+                            ParentId = new Guid("ae19a33d-79b2-4963-a992-febfc0ef1e58"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("ea249c96-eb42-455c-8971-6d14897b250a"),
+                            ApiMethod = "GET",
+                            Code = "system.rolepermission.update",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1288),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "更新",
+                            ParentId = new Guid("752f03f3-b335-4ed7-a54b-2486f2c5d03e"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        });
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleRole", b =>
+                {
+                    b.Property<Guid>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("ConcurrencyStamp")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<DateTime>("CreationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid?>("CreatorId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<DateTime?>("LastModificationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid>("LastModifierId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("Name")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("nvarchar(50)");
+
+                    b.Property<string>("NormalizedName")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("nvarchar(50)");
+
+                    b.Property<string>("Remark")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<int>("Status")
+                        .HasColumnType("int");
+
+                    b.HasKey("Id");
+
+                    b.HasIndex("CreationTime");
+
+                    b.HasIndex("NormalizedName");
+
+                    b.ToTable("EleRole", (string)null);
+
+                    b.HasData(
+                        new
+                        {
+                            Id = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            ConcurrencyStamp = "640f42fdd96a4e4d827dc511cac97b79",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 575, DateTimeKind.Local).AddTicks(3124),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "管理员",
+                            NormalizedName = "管理员",
+                            Status = 1
+                        });
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleRoleClaim", b =>
+                {
+                    b.Property<Guid>("Id")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("ClaimType")
+                        .IsRequired()
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.Property<string>("ClaimValue")
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.Property<Guid>("RoleId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.HasKey("Id");
+
+                    b.HasIndex("RoleId");
+
+                    b.ToTable("EleRoleClaim", (string)null);
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleRolePermission", b =>
+                {
+                    b.Property<Guid>("RoleId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<Guid>("PermissionId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<DateTime>("CreationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid>("CreatorId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.HasKey("RoleId", "PermissionId");
+
+                    b.HasIndex("PermissionId");
+
+                    b.HasIndex("RoleId", "PermissionId");
+
+                    b.ToTable("EleRolePermission", (string)null);
+
+                    b.HasData(
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("1d4c0cd9-47e5-4de7-a523-8d74cb7a973b"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1357),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("09f1720e-bdd0-448d-9572-e0d1418fc4f8"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1364),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("f4af67e1-5614-4200-b4b9-edd5fe5d67b2"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1365),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("ae19a33d-79b2-4963-a992-febfc0ef1e58"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1366),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("752f03f3-b335-4ed7-a54b-2486f2c5d03e"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1367),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("23b39087-3df6-4338-b5c9-148dcd45e234"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1368),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("cb9468e1-3e89-432b-8f66-61493a53d5ac"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1369),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("9f732d16-a64b-4248-8264-2f4e334e3e01"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1370),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("795ab106-a9e0-4142-948d-2a709a0fd371"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1371),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("14492003-3428-4a58-89a5-d91f2328b94f"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1372),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("a950864b-283c-47a0-b931-2683a2c16ed5"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1373),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("58430242-3945-4b5a-b5cb-f58ab3d11fa1"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1374),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("668c187c-011f-4c93-ada8-b9612d01b285"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1374),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("139cdb4c-0b37-487b-a469-c42ca1179d73"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1375),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("ea249c96-eb42-455c-8971-6d14897b250a"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1376),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        });
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUser", b =>
+                {
+                    b.Property<Guid>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<int>("AccessFailedCount")
+                        .HasColumnType("int")
+                        .HasColumnName("AccessFailedCount");
+
+                    b.Property<string>("ConcurrencyStamp")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<DateTime>("CreationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid?>("CreatorId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("Email")
+                        .HasColumnType("nvarchar(450)");
+
+                    b.Property<bool>("EmailConfirmed")
+                        .HasColumnType("bit");
+
+                    b.Property<string>("FullName")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<DateTime?>("LastModificationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid>("LastModifierId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<bool>("LockoutEnabled")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bit")
+                        .HasDefaultValue(false)
+                        .HasColumnName("LockoutEnabled");
+
+                    b.Property<DateTimeOffset?>("LockoutEnd")
+                        .HasColumnType("datetimeoffset");
+
+                    b.Property<string>("NormalizedEmail")
+                        .IsRequired()
+                        .HasMaxLength(100)
+                        .HasColumnType("nvarchar(100)")
+                        .HasColumnName("NormalizedEmail");
+
+                    b.Property<string>("NormalizedUserName")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("nvarchar(50)")
+                        .HasColumnName("NormalizedUserName");
+
+                    b.Property<string>("PasswordHash")
+                        .HasMaxLength(100)
+                        .HasColumnType("nvarchar(100)")
+                        .HasColumnName("PasswordHash");
+
+                    b.Property<string>("PhoneNumber")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<bool>("PhoneNumberConfirmed")
+                        .HasColumnType("bit");
+
+                    b.Property<string>("Remark")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<string>("SecurityStamp")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("nvarchar(50)")
+                        .HasColumnName("SecurityStamp");
+
+                    b.Property<int>("Status")
+                        .HasColumnType("int");
+
+                    b.Property<bool>("TwoFactorEnabled")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bit")
+                        .HasDefaultValue(false)
+                        .HasColumnName("TwoFactorEnabled");
+
+                    b.Property<string>("UserName")
+                        .HasColumnType("nvarchar(450)");
+
+                    b.HasKey("Id");
+
+                    b.HasIndex("CreationTime");
+
+                    b.HasIndex("Email");
+
+                    b.HasIndex("NormalizedEmail");
+
+                    b.HasIndex("NormalizedUserName");
+
+                    b.HasIndex("UserName");
+
+                    b.ToTable("EleUser", (string)null);
+
+                    b.HasData(
+                        new
+                        {
+                            Id = new Guid("0abd1739-7b72-4556-ad70-89009ecbcaa7"),
+                            AccessFailedCount = 0,
+                            ConcurrencyStamp = "de91e8a7e6da452998d003c0deed563d",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 575, DateTimeKind.Local).AddTicks(3428),
+                            Email = "admin@eletric.com",
+                            EmailConfirmed = true,
+                            FullName = "管理员",
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            LockoutEnabled = false,
+                            NormalizedEmail = "ADMIN@ELETRIC.COM",
+                            NormalizedUserName = "ADMIN",
+                            PasswordHash = "AQAAAAIAAYagAAAAEIKewBYi6+6C2NweyM9RnBUliFXSc4zrK32BJWOzjIbVKdlE2p0MIcW5y5aYkQPBMw==",
+                            PhoneNumberConfirmed = false,
+                            SecurityStamp = "d31f0633-9dbc-4011-8620-04ccf42f5bf7",
+                            Status = 1,
+                            TwoFactorEnabled = false,
+                            UserName = "admin"
+                        });
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserClaim", b =>
+                {
+                    b.Property<Guid>("Id")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("ClaimType")
+                        .IsRequired()
+                        .HasMaxLength(100)
+                        .HasColumnType("nvarchar(100)");
+
+                    b.Property<string>("ClaimValue")
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.Property<Guid>("UserId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.HasKey("Id");
+
+                    b.HasIndex("UserId");
+
+                    b.ToTable("EleUserClaim", (string)null);
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserLogin", b =>
+                {
+                    b.Property<Guid>("UserId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("LoginProvider")
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.Property<string>("ProviderDisplayName")
+                        .HasMaxLength(100)
+                        .HasColumnType("nvarchar(100)");
+
+                    b.Property<string>("ProviderKey")
+                        .IsRequired()
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.HasKey("UserId", "LoginProvider");
+
+                    b.HasIndex("LoginProvider", "ProviderKey");
+
+                    b.ToTable("EleUserLogin", (string)null);
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserRole", b =>
+                {
+                    b.Property<Guid>("UserId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<Guid>("RoleId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<DateTime>("CreationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid>("CreatorId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.HasKey("UserId", "RoleId");
+
+                    b.HasIndex("RoleId", "UserId");
+
+                    b.ToTable("EleUserRole", (string)null);
+
+                    b.HasData(
+                        new
+                        {
+                            UserId = new Guid("0abd1739-7b72-4556-ad70-89009ecbcaa7"),
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1121),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        });
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserToken", b =>
+                {
+                    b.Property<Guid>("UserId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("LoginProvider")
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.Property<string>("Name")
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.Property<string>("Value")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.HasKey("UserId", "LoginProvider", "Name");
+
+                    b.ToTable("EleUserToken", (string)null);
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleRoleClaim", b =>
+                {
+                    b.HasOne("Electric.Domain.Entities.Identity.EleRole", null)
+                        .WithMany("Claims")
+                        .HasForeignKey("RoleId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleRolePermission", b =>
+                {
+                    b.HasOne("Electric.Domain.Entities.Identity.ElePermission", null)
+                        .WithMany()
+                        .HasForeignKey("PermissionId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+
+                    b.HasOne("Electric.Domain.Entities.Identity.EleRole", null)
+                        .WithMany("Permissions")
+                        .HasForeignKey("RoleId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserClaim", b =>
+                {
+                    b.HasOne("Electric.Domain.Entities.Identity.EleUser", null)
+                        .WithMany("Claims")
+                        .HasForeignKey("UserId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserLogin", b =>
+                {
+                    b.HasOne("Electric.Domain.Entities.Identity.EleUser", null)
+                        .WithMany("Logins")
+                        .HasForeignKey("UserId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserRole", b =>
+                {
+                    b.HasOne("Electric.Domain.Entities.Identity.EleRole", null)
+                        .WithMany()
+                        .HasForeignKey("RoleId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+
+                    b.HasOne("Electric.Domain.Entities.Identity.EleUser", null)
+                        .WithMany("Roles")
+                        .HasForeignKey("UserId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserToken", b =>
+                {
+                    b.HasOne("Electric.Domain.Entities.Identity.EleUser", null)
+                        .WithMany("Tokens")
+                        .HasForeignKey("UserId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleRole", b =>
+                {
+                    b.Navigation("Claims");
+
+                    b.Navigation("Permissions");
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUser", b =>
+                {
+                    b.Navigation("Claims");
+
+                    b.Navigation("Logins");
+
+                    b.Navigation("Roles");
+
+                    b.Navigation("Tokens");
+                });
+#pragma warning restore 612, 618
+        }
+    }
+}

File diff suppressed because it is too large
+ 387 - 0
src/Electric/Electric.EntityFrameworkCore.DbMigrations/Migrations/20240413234821_InitDB.cs


+ 806 - 0
src/Electric/Electric.EntityFrameworkCore.DbMigrations/Migrations/ApplicationDbContextModelSnapshot.cs

@@ -0,0 +1,806 @@
+// <auto-generated />
+using System;
+using Electric.EntityFrameworkCore.Repository;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore.Infrastructure;
+using Microsoft.EntityFrameworkCore.Metadata;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+
+#nullable disable
+
+namespace Electric.EntityFrameworkCore.DbMigrations.Migrations
+{
+    [DbContext(typeof(ApplicationDbContext))]
+    partial class ApplicationDbContextModelSnapshot : ModelSnapshot
+    {
+        protected override void BuildModel(ModelBuilder modelBuilder)
+        {
+#pragma warning disable 612, 618
+            modelBuilder
+                .HasAnnotation("ProductVersion", "8.0.4")
+                .HasAnnotation("Relational:MaxIdentifierLength", 128);
+
+            SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.ElePermission", b =>
+                {
+                    b.Property<Guid>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("ApiMethod")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<string>("Code")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<string>("Component")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<DateTime>("CreationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid?>("CreatorId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("Icon")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<DateTime?>("LastModificationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid>("LastModifierId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("Name")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<Guid?>("ParentId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<int>("PermissionType")
+                        .HasColumnType("int");
+
+                    b.Property<string>("Remark")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<int>("Sort")
+                        .HasColumnType("int");
+
+                    b.Property<int>("Status")
+                        .HasColumnType("int");
+
+                    b.Property<string>("Url")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.HasKey("Id");
+
+                    b.HasIndex("CreationTime");
+
+                    b.ToTable("ElePermission", (string)null);
+
+                    b.HasData(
+                        new
+                        {
+                            Id = new Guid("1d4c0cd9-47e5-4de7-a523-8d74cb7a973b"),
+                            ApiMethod = "GET",
+                            Code = "system",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1218),
+                            Icon = "el-icon-s-tools",
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "系统管理",
+                            PermissionType = 0,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("09f1720e-bdd0-448d-9572-e0d1418fc4f8"),
+                            ApiMethod = "GET",
+                            Code = "system.user",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1241),
+                            Icon = "el-icon-user-solid",
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "用户管理",
+                            ParentId = new Guid("1d4c0cd9-47e5-4de7-a523-8d74cb7a973b"),
+                            PermissionType = 0,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("f4af67e1-5614-4200-b4b9-edd5fe5d67b2"),
+                            ApiMethod = "GET",
+                            Code = "system.role",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1244),
+                            Icon = "peoples",
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "角色管理",
+                            ParentId = new Guid("1d4c0cd9-47e5-4de7-a523-8d74cb7a973b"),
+                            PermissionType = 0,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("ae19a33d-79b2-4963-a992-febfc0ef1e58"),
+                            ApiMethod = "GET",
+                            Code = "system.permission",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1245),
+                            Icon = "list",
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "菜单管理",
+                            ParentId = new Guid("1d4c0cd9-47e5-4de7-a523-8d74cb7a973b"),
+                            PermissionType = 0,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("752f03f3-b335-4ed7-a54b-2486f2c5d03e"),
+                            ApiMethod = "GET",
+                            Code = "system.rolepermission",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1248),
+                            Icon = "example",
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "角色权限",
+                            ParentId = new Guid("1d4c0cd9-47e5-4de7-a523-8d74cb7a973b"),
+                            PermissionType = 0,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("23b39087-3df6-4338-b5c9-148dcd45e234"),
+                            ApiMethod = "GET",
+                            Code = "system.user.add",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1258),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "添加",
+                            ParentId = new Guid("09f1720e-bdd0-448d-9572-e0d1418fc4f8"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("cb9468e1-3e89-432b-8f66-61493a53d5ac"),
+                            ApiMethod = "GET",
+                            Code = "system.user.edit",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1261),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "编辑",
+                            ParentId = new Guid("09f1720e-bdd0-448d-9572-e0d1418fc4f8"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("9f732d16-a64b-4248-8264-2f4e334e3e01"),
+                            ApiMethod = "GET",
+                            Code = "system.user.delete",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1264),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "删除",
+                            ParentId = new Guid("09f1720e-bdd0-448d-9572-e0d1418fc4f8"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("795ab106-a9e0-4142-948d-2a709a0fd371"),
+                            ApiMethod = "GET",
+                            Code = "system.role.add",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1267),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "添加",
+                            ParentId = new Guid("f4af67e1-5614-4200-b4b9-edd5fe5d67b2"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("14492003-3428-4a58-89a5-d91f2328b94f"),
+                            ApiMethod = "GET",
+                            Code = "system.role.edit",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1272),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "编辑",
+                            ParentId = new Guid("f4af67e1-5614-4200-b4b9-edd5fe5d67b2"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("a950864b-283c-47a0-b931-2683a2c16ed5"),
+                            ApiMethod = "GET",
+                            Code = "system.role.delete",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1274),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "删除",
+                            ParentId = new Guid("f4af67e1-5614-4200-b4b9-edd5fe5d67b2"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("58430242-3945-4b5a-b5cb-f58ab3d11fa1"),
+                            ApiMethod = "GET",
+                            Code = "system.permission.add",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1279),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "添加",
+                            ParentId = new Guid("ae19a33d-79b2-4963-a992-febfc0ef1e58"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("668c187c-011f-4c93-ada8-b9612d01b285"),
+                            ApiMethod = "GET",
+                            Code = "system.permission.edit",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1284),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "编辑",
+                            ParentId = new Guid("ae19a33d-79b2-4963-a992-febfc0ef1e58"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("139cdb4c-0b37-487b-a469-c42ca1179d73"),
+                            ApiMethod = "GET",
+                            Code = "system.permission.delete",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1286),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "删除",
+                            ParentId = new Guid("ae19a33d-79b2-4963-a992-febfc0ef1e58"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        },
+                        new
+                        {
+                            Id = new Guid("ea249c96-eb42-455c-8971-6d14897b250a"),
+                            ApiMethod = "GET",
+                            Code = "system.rolepermission.update",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1288),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "更新",
+                            ParentId = new Guid("752f03f3-b335-4ed7-a54b-2486f2c5d03e"),
+                            PermissionType = 1,
+                            Sort = 0,
+                            Status = 1
+                        });
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleRole", b =>
+                {
+                    b.Property<Guid>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("ConcurrencyStamp")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<DateTime>("CreationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid?>("CreatorId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<DateTime?>("LastModificationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid>("LastModifierId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("Name")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("nvarchar(50)");
+
+                    b.Property<string>("NormalizedName")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("nvarchar(50)");
+
+                    b.Property<string>("Remark")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<int>("Status")
+                        .HasColumnType("int");
+
+                    b.HasKey("Id");
+
+                    b.HasIndex("CreationTime");
+
+                    b.HasIndex("NormalizedName");
+
+                    b.ToTable("EleRole", (string)null);
+
+                    b.HasData(
+                        new
+                        {
+                            Id = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            ConcurrencyStamp = "640f42fdd96a4e4d827dc511cac97b79",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 575, DateTimeKind.Local).AddTicks(3124),
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            Name = "管理员",
+                            NormalizedName = "管理员",
+                            Status = 1
+                        });
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleRoleClaim", b =>
+                {
+                    b.Property<Guid>("Id")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("ClaimType")
+                        .IsRequired()
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.Property<string>("ClaimValue")
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.Property<Guid>("RoleId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.HasKey("Id");
+
+                    b.HasIndex("RoleId");
+
+                    b.ToTable("EleRoleClaim", (string)null);
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleRolePermission", b =>
+                {
+                    b.Property<Guid>("RoleId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<Guid>("PermissionId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<DateTime>("CreationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid>("CreatorId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.HasKey("RoleId", "PermissionId");
+
+                    b.HasIndex("PermissionId");
+
+                    b.HasIndex("RoleId", "PermissionId");
+
+                    b.ToTable("EleRolePermission", (string)null);
+
+                    b.HasData(
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("1d4c0cd9-47e5-4de7-a523-8d74cb7a973b"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1357),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("09f1720e-bdd0-448d-9572-e0d1418fc4f8"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1364),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("f4af67e1-5614-4200-b4b9-edd5fe5d67b2"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1365),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("ae19a33d-79b2-4963-a992-febfc0ef1e58"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1366),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("752f03f3-b335-4ed7-a54b-2486f2c5d03e"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1367),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("23b39087-3df6-4338-b5c9-148dcd45e234"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1368),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("cb9468e1-3e89-432b-8f66-61493a53d5ac"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1369),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("9f732d16-a64b-4248-8264-2f4e334e3e01"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1370),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("795ab106-a9e0-4142-948d-2a709a0fd371"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1371),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("14492003-3428-4a58-89a5-d91f2328b94f"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1372),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("a950864b-283c-47a0-b931-2683a2c16ed5"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1373),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("58430242-3945-4b5a-b5cb-f58ab3d11fa1"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1374),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("668c187c-011f-4c93-ada8-b9612d01b285"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1374),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("139cdb4c-0b37-487b-a469-c42ca1179d73"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1375),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        },
+                        new
+                        {
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            PermissionId = new Guid("ea249c96-eb42-455c-8971-6d14897b250a"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1376),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        });
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUser", b =>
+                {
+                    b.Property<Guid>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<int>("AccessFailedCount")
+                        .HasColumnType("int")
+                        .HasColumnName("AccessFailedCount");
+
+                    b.Property<string>("ConcurrencyStamp")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<DateTime>("CreationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid?>("CreatorId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("Email")
+                        .HasColumnType("nvarchar(450)");
+
+                    b.Property<bool>("EmailConfirmed")
+                        .HasColumnType("bit");
+
+                    b.Property<string>("FullName")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<DateTime?>("LastModificationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid>("LastModifierId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<bool>("LockoutEnabled")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bit")
+                        .HasDefaultValue(false)
+                        .HasColumnName("LockoutEnabled");
+
+                    b.Property<DateTimeOffset?>("LockoutEnd")
+                        .HasColumnType("datetimeoffset");
+
+                    b.Property<string>("NormalizedEmail")
+                        .IsRequired()
+                        .HasMaxLength(100)
+                        .HasColumnType("nvarchar(100)")
+                        .HasColumnName("NormalizedEmail");
+
+                    b.Property<string>("NormalizedUserName")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("nvarchar(50)")
+                        .HasColumnName("NormalizedUserName");
+
+                    b.Property<string>("PasswordHash")
+                        .HasMaxLength(100)
+                        .HasColumnType("nvarchar(100)")
+                        .HasColumnName("PasswordHash");
+
+                    b.Property<string>("PhoneNumber")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<bool>("PhoneNumberConfirmed")
+                        .HasColumnType("bit");
+
+                    b.Property<string>("Remark")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<string>("SecurityStamp")
+                        .IsRequired()
+                        .HasMaxLength(50)
+                        .HasColumnType("nvarchar(50)")
+                        .HasColumnName("SecurityStamp");
+
+                    b.Property<int>("Status")
+                        .HasColumnType("int");
+
+                    b.Property<bool>("TwoFactorEnabled")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("bit")
+                        .HasDefaultValue(false)
+                        .HasColumnName("TwoFactorEnabled");
+
+                    b.Property<string>("UserName")
+                        .HasColumnType("nvarchar(450)");
+
+                    b.HasKey("Id");
+
+                    b.HasIndex("CreationTime");
+
+                    b.HasIndex("Email");
+
+                    b.HasIndex("NormalizedEmail");
+
+                    b.HasIndex("NormalizedUserName");
+
+                    b.HasIndex("UserName");
+
+                    b.ToTable("EleUser", (string)null);
+
+                    b.HasData(
+                        new
+                        {
+                            Id = new Guid("0abd1739-7b72-4556-ad70-89009ecbcaa7"),
+                            AccessFailedCount = 0,
+                            ConcurrencyStamp = "de91e8a7e6da452998d003c0deed563d",
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 575, DateTimeKind.Local).AddTicks(3428),
+                            Email = "admin@eletric.com",
+                            EmailConfirmed = true,
+                            FullName = "管理员",
+                            LastModifierId = new Guid("00000000-0000-0000-0000-000000000000"),
+                            LockoutEnabled = false,
+                            NormalizedEmail = "ADMIN@ELETRIC.COM",
+                            NormalizedUserName = "ADMIN",
+                            PasswordHash = "AQAAAAIAAYagAAAAEIKewBYi6+6C2NweyM9RnBUliFXSc4zrK32BJWOzjIbVKdlE2p0MIcW5y5aYkQPBMw==",
+                            PhoneNumberConfirmed = false,
+                            SecurityStamp = "d31f0633-9dbc-4011-8620-04ccf42f5bf7",
+                            Status = 1,
+                            TwoFactorEnabled = false,
+                            UserName = "admin"
+                        });
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserClaim", b =>
+                {
+                    b.Property<Guid>("Id")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("ClaimType")
+                        .IsRequired()
+                        .HasMaxLength(100)
+                        .HasColumnType("nvarchar(100)");
+
+                    b.Property<string>("ClaimValue")
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.Property<Guid>("UserId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.HasKey("Id");
+
+                    b.HasIndex("UserId");
+
+                    b.ToTable("EleUserClaim", (string)null);
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserLogin", b =>
+                {
+                    b.Property<Guid>("UserId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("LoginProvider")
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.Property<string>("ProviderDisplayName")
+                        .HasMaxLength(100)
+                        .HasColumnType("nvarchar(100)");
+
+                    b.Property<string>("ProviderKey")
+                        .IsRequired()
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.HasKey("UserId", "LoginProvider");
+
+                    b.HasIndex("LoginProvider", "ProviderKey");
+
+                    b.ToTable("EleUserLogin", (string)null);
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserRole", b =>
+                {
+                    b.Property<Guid>("UserId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<Guid>("RoleId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<DateTime>("CreationTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<Guid>("CreatorId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.HasKey("UserId", "RoleId");
+
+                    b.HasIndex("RoleId", "UserId");
+
+                    b.ToTable("EleUserRole", (string)null);
+
+                    b.HasData(
+                        new
+                        {
+                            UserId = new Guid("0abd1739-7b72-4556-ad70-89009ecbcaa7"),
+                            RoleId = new Guid("bc35ed5e-61ac-4bb7-a57f-a2a768ff9bed"),
+                            CreationTime = new DateTime(2024, 4, 14, 7, 48, 20, 659, DateTimeKind.Local).AddTicks(1121),
+                            CreatorId = new Guid("00000000-0000-0000-0000-000000000000")
+                        });
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserToken", b =>
+                {
+                    b.Property<Guid>("UserId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<string>("LoginProvider")
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.Property<string>("Name")
+                        .HasMaxLength(200)
+                        .HasColumnType("nvarchar(200)");
+
+                    b.Property<string>("Value")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.HasKey("UserId", "LoginProvider", "Name");
+
+                    b.ToTable("EleUserToken", (string)null);
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleRoleClaim", b =>
+                {
+                    b.HasOne("Electric.Domain.Entities.Identity.EleRole", null)
+                        .WithMany("Claims")
+                        .HasForeignKey("RoleId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleRolePermission", b =>
+                {
+                    b.HasOne("Electric.Domain.Entities.Identity.ElePermission", null)
+                        .WithMany()
+                        .HasForeignKey("PermissionId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+
+                    b.HasOne("Electric.Domain.Entities.Identity.EleRole", null)
+                        .WithMany("Permissions")
+                        .HasForeignKey("RoleId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserClaim", b =>
+                {
+                    b.HasOne("Electric.Domain.Entities.Identity.EleUser", null)
+                        .WithMany("Claims")
+                        .HasForeignKey("UserId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserLogin", b =>
+                {
+                    b.HasOne("Electric.Domain.Entities.Identity.EleUser", null)
+                        .WithMany("Logins")
+                        .HasForeignKey("UserId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserRole", b =>
+                {
+                    b.HasOne("Electric.Domain.Entities.Identity.EleRole", null)
+                        .WithMany()
+                        .HasForeignKey("RoleId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+
+                    b.HasOne("Electric.Domain.Entities.Identity.EleUser", null)
+                        .WithMany("Roles")
+                        .HasForeignKey("UserId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUserToken", b =>
+                {
+                    b.HasOne("Electric.Domain.Entities.Identity.EleUser", null)
+                        .WithMany("Tokens")
+                        .HasForeignKey("UserId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleRole", b =>
+                {
+                    b.Navigation("Claims");
+
+                    b.Navigation("Permissions");
+                });
+
+            modelBuilder.Entity("Electric.Domain.Entities.Identity.EleUser", b =>
+                {
+                    b.Navigation("Claims");
+
+                    b.Navigation("Logins");
+
+                    b.Navigation("Roles");
+
+                    b.Navigation("Tokens");
+                });
+#pragma warning restore 612, 618
+        }
+    }
+}

+ 24 - 26
src/Electric/Electric.EntityFrameworkCore.DbMigrations/Program.cs

@@ -1,32 +1,30 @@
-var builder = WebApplication.CreateBuilder(args);
+using Electric.EntityFrameworkCore.DependencyInjection;
 
-// Add services to the container.
+using System.Reflection;
 
-var app = builder.Build();
+var builder = WebApplication.CreateBuilder(args);
 
-// Configure the HTTP request pipeline.
+//EntityFrameworkCore注入
+var provider = builder.Configuration.GetValue<string>("DataProvider");
+var connection = string.Empty;
 
-var summaries = new[]
+//启用的数据库类型
+switch (provider)
 {
-    "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
-};
+    case "MsSql":
+        connection = builder.Configuration.GetConnectionString("MsSqlConnection") ?? throw new InvalidOperationException("MsSqlConnection在appsettings.json未发现");
+        break;
 
-app.MapGet("/weatherforecast", () =>
-{
-    var forecast = Enumerable.Range(1, 5).Select(index =>
-        new WeatherForecast
-        (
-            DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
-            Random.Shared.Next(-20, 55),
-            summaries[Random.Shared.Next(summaries.Length)]
-        ))
-        .ToArray();
-    return forecast;
-});
-
-app.Run();
-
-internal record WeatherForecast(DateOnly Date, int TemperatureC, string? Summary)
-{
-    public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
-}
+    case "MySql":
+        connection = builder.Configuration.GetConnectionString("MySqlConnection") ?? throw new InvalidOperationException("MySqlConnection在appsettings.json未发现");
+        break;
+}
+
+//数据库类型
+var dbType = provider == "MySql" ? DbType.MySql : DbType.SqlServer;
+
+//, Assembly.GetExecutingAssembly().FullName
+builder.Services.AddEntityFrameworkCore(dbType, connection, Assembly.GetExecutingAssembly().FullName);
+
+var app = builder.Build();
+app.Run();

+ 7 - 1
src/Electric/Electric.EntityFrameworkCore.DbMigrations/appsettings.json

@@ -1,4 +1,10 @@
-{
+{ //数据库连接
+  "ConnectionStrings": {
+    "MsSqlConnection": "Server=localhost;Database=ElectricAuth;Uid=sa;Pwd=wyh_232321;TrustServerCertificate=true;",
+    "MySqlConnection": "Server=124.220.187.142;Database=ElectricAuth;Uid=eleven;Pwd=wyh_232321;"
+  },
+  //数据库:MsSql、MySql
+  "DataProvider": "MsSql",
   "Logging": {
     "LogLevel": {
       "Default": "Information",

+ 11 - 0
src/Electric/Electric.EntityFrameworkCore/DependencyInjection/DbType.cs

@@ -0,0 +1,11 @@
+namespace Electric.EntityFrameworkCore.DependencyInjection
+{
+    /// <summary>
+    /// 自定义数据库类型
+    /// </summary>
+    public enum DbType
+    {
+        MySql = 0,
+        SqlServer = 1
+    }
+}

+ 81 - 0
src/Electric/Electric.EntityFrameworkCore/DependencyInjection/ServiceCollectionExtensions.cs

@@ -0,0 +1,81 @@
+using Electric.Domain.Repositories;
+using Electric.EntityFrameworkCore.Repository;
+
+using Microsoft.EntityFrameworkCore;
+using Microsoft.Extensions.DependencyInjection;
+
+namespace Electric.EntityFrameworkCore.DependencyInjection
+{
+    public static class ServiceCollectionExtensions
+    {
+        /// <summary>
+        /// EntityFrameworkCore注入
+        /// </summary>
+        /// <param name="services"></param>
+        /// <param name="dbType"></param>
+        /// <param name="connection"></param>
+        /// <param name="assemblyName"></param>
+        public static void AddEntityFrameworkCore(this IServiceCollection services, DbType dbType, string connection, string? assemblyName = null)
+        {
+            #region 初始化数据库
+
+            // 如果当前程序集没有Migrations文件夹且没有快照时执行如下两步进行初始化数据库
+            //1.输入:Add-Migration InitDB,并回车。其中:Add-Migration为迁移命令,InitDB:这个是迁移的名称,可以根据自己自定义。
+            //2.在程序包管理器控制台,输入命令:Update-Database,并回车。
+
+            #endregion 初始化数据库
+
+            //Repository注入
+            var assemblies = AppDomain.CurrentDomain.GetAssemblies();
+            foreach (var assembly in assemblies)
+            {
+                //获取继承IRepository并且不是泛型的类
+                List<Type> types = assembly.GetTypes()
+                .Where(t => t.IsClass && !t.IsGenericType && t.GetInterfaces().Contains(typeof(IRepository)))
+                .ToList();
+
+                types.ForEach(impl =>
+                {
+                    //获取该类所继承的所有接口
+                    Type[] interfaces = impl.GetInterfaces();
+                    interfaces.ToList().ForEach(i =>
+                    {
+                        services.AddScoped(i, impl);
+                    });
+                });
+            }
+
+            //数据库上下文注入
+            services.AddDbContext<ApplicationDbContext>(options =>
+            {
+                //启用的数据库类型
+                switch (dbType)
+                {
+                    case DbType.SqlServer:
+                        if (assemblyName == null)
+                        {
+                            options.UseSqlServer(connection);
+                        }
+                        else
+                        {
+                            //AddEntityFrameworkCore增加一个参数:assemblyName,用来指定迁移程序集的名称。
+                            options.UseSqlServer(connection, b => b.MigrationsAssembly(assemblyName));
+                        }
+                        break;
+
+                    case DbType.MySql:
+                        if (assemblyName == null)
+                        {
+                            options.UseMySql(connection, ServerVersion.AutoDetect(connection));
+                        }
+                        else
+                        {
+                            //AddEntityFrameworkCore增加一个参数:assemblyName,用来指定迁移程序集的名称。
+                            options.UseMySql(connection, ServerVersion.AutoDetect(connection), b => b.MigrationsAssembly(assemblyName));
+                        }
+                        break;
+                }
+            });
+        }
+    }
+}

+ 10 - 0
src/Electric/Electric.EntityFrameworkCore/Electric.EntityFrameworkCore.csproj

@@ -6,4 +6,14 @@
     <Nullable>enable</Nullable>
   </PropertyGroup>
 
+  <ItemGroup>
+    <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.4" />
+    <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.4" />
+    <PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.2" />
+  </ItemGroup>
+
+  <ItemGroup>
+    <ProjectReference Include="..\Electric.Domain\Electric.Domain.csproj" />
+  </ItemGroup>
+
 </Project>

+ 282 - 0
src/Electric/Electric.EntityFrameworkCore/Repository/ApplicationDbContext.cs

@@ -0,0 +1,282 @@
+using Electric.Domain.Entities.Identity;
+using Electric.Domain.Shared.Entities.Identity;
+using Electric.Domain.Shared.Entities;
+
+using Microsoft.AspNetCore.Identity;
+using Microsoft.EntityFrameworkCore;
+
+namespace Electric.EntityFrameworkCore.Repository
+{
+    /// <summary>
+    /// 数据库上下文
+    /// </summary>
+    public class ApplicationDbContext : DbContext
+    {
+        /// <summary>
+        /// 权限
+        /// </summary>
+        public DbSet<ElePermission> Permissions { get; set; }
+
+        /// <summary>
+        /// 用户
+        /// </summary>
+        public DbSet<EleUser> Users { get; set; }
+
+        /// <summary>
+        /// 用户声明
+        /// </summary>
+        public DbSet<EleUserClaim> UserClaims { get; set; }
+
+        /// <summary>
+        /// 登录信息
+        /// </summary>
+        public DbSet<EleUserLogin> UserLogins { get; set; }
+
+        /// <summary>
+        /// 用户角色
+        /// </summary>
+        public DbSet<EleUserRole> UserRoles { get; set; }
+
+        /// <summary>
+        /// 令牌
+        /// </summary>
+        public DbSet<EleUserToken> UserTokens { get; set; }
+
+        /// <summary>
+        /// 角色
+        /// </summary>
+        public DbSet<EleRole> Roles { get; set; }
+
+        /// <summary>
+        /// 角色声明
+        /// </summary>
+        public DbSet<EleRoleClaim> RoleClaims { get; set; }
+
+        /// <summary>
+        /// 角色权限
+        /// </summary>
+        public DbSet<EleRolePermission> RolePermissions { get; set; }
+
+        public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options)
+        {
+        }
+
+        protected override void OnModelCreating(ModelBuilder modelBuilder)
+        {
+            base.OnModelCreating(modelBuilder);
+
+            ConfigureEntityTables(modelBuilder);
+
+            AddSeedData(modelBuilder);
+        }
+
+        /// <summary>
+        /// 配置实体映射表
+        /// </summary>
+        /// <param name="modelBuilder"></param>
+        private void ConfigureEntityTables(ModelBuilder modelBuilder)
+        {
+            // 配置实体类型映射到的表名
+            modelBuilder.Entity<EleUser>(b =>
+            {
+                b.ToTable("EleUser");
+                b.HasKey(x => x.Id);
+
+                b.Property(u => u.NormalizedUserName).IsRequired()
+                    .HasMaxLength(50)
+                    .HasColumnName(nameof(EleUser.NormalizedUserName));
+                b.Property(u => u.NormalizedEmail).IsRequired()
+                    .HasMaxLength(100)
+                    .HasColumnName(nameof(EleUser.NormalizedEmail));
+                b.Property(u => u.PasswordHash).HasMaxLength(100)
+                    .HasColumnName(nameof(EleUser.PasswordHash));
+                b.Property(u => u.SecurityStamp).IsRequired().HasMaxLength(50)
+                    .HasColumnName(nameof(EleUser.SecurityStamp));
+                b.Property(u => u.TwoFactorEnabled).HasDefaultValue(false)
+                    .HasColumnName(nameof(EleUser.TwoFactorEnabled));
+                b.Property(u => u.LockoutEnabled).HasDefaultValue(false)
+                    .HasColumnName(nameof(EleUser.LockoutEnabled));
+
+                b.Property(u => u.AccessFailedCount)
+                    .HasColumnName(nameof(EleUser.AccessFailedCount));
+
+                b.HasMany(u => u.Claims).WithOne().HasForeignKey(uc => uc.UserId).IsRequired();
+                b.HasMany(u => u.Logins).WithOne().HasForeignKey(ul => ul.UserId).IsRequired();
+                b.HasMany(u => u.Roles).WithOne().HasForeignKey(ur => ur.UserId).IsRequired();
+                b.HasMany(u => u.Tokens).WithOne().HasForeignKey(ur => ur.UserId).IsRequired();
+
+                b.HasIndex(u => u.NormalizedUserName);
+                b.HasIndex(u => u.NormalizedEmail);
+                b.HasIndex(u => u.UserName);
+                b.HasIndex(u => u.Email);
+                b.HasIndex(u => u.CreationTime);
+            });
+
+            modelBuilder.Entity<EleUserClaim>(b =>
+            {
+                b.ToTable("EleUserClaim");
+
+                b.Property(x => x.Id).ValueGeneratedNever();
+
+                b.Property(uc => uc.ClaimType).HasMaxLength(100).IsRequired();
+                b.Property(uc => uc.ClaimValue).HasMaxLength(200);
+
+                b.HasIndex(uc => uc.UserId);
+            });
+
+            modelBuilder.Entity<EleUserRole>(b =>
+            {
+                b.ToTable("EleUserRole");
+
+                b.HasKey(ur => new { ur.UserId, ur.RoleId });
+
+                b.HasOne<EleRole>().WithMany().HasForeignKey(ur => ur.RoleId).IsRequired();
+                b.HasOne<EleUser>().WithMany(u => u.Roles).HasForeignKey(ur => ur.UserId).IsRequired();
+
+                b.HasIndex(ur => new { ur.RoleId, ur.UserId });
+            });
+
+            modelBuilder.Entity<EleUserLogin>(b =>
+            {
+                b.ToTable("EleUserLogin");
+
+                b.HasKey(x => new { x.UserId, x.LoginProvider });
+
+                b.Property(ul => ul.LoginProvider).HasMaxLength(200)
+                    .IsRequired();
+                b.Property(ul => ul.ProviderKey).HasMaxLength(200)
+                    .IsRequired();
+                b.Property(ul => ul.ProviderDisplayName)
+                    .HasMaxLength(100);
+
+                b.HasIndex(l => new { l.LoginProvider, l.ProviderKey });
+            });
+
+            modelBuilder.Entity<EleUserToken>(b =>
+            {
+                b.ToTable("EleUserToken");
+
+                b.HasKey(l => new { l.UserId, l.LoginProvider, l.Name });
+
+                b.Property(ul => ul.LoginProvider).HasMaxLength(200)
+                    .IsRequired();
+                b.Property(ul => ul.Name).HasMaxLength(200).IsRequired();
+            });
+
+            modelBuilder.Entity<EleRole>(b =>
+            {
+                b.ToTable("EleRole");
+                b.HasKey(x => x.Id);
+                b.Property(r => r.Name).IsRequired().HasMaxLength(50);
+                b.Property(r => r.NormalizedName).IsRequired().HasMaxLength(50);
+                b.HasMany(r => r.Claims).WithOne().HasForeignKey(rc => rc.RoleId).IsRequired();
+                //指定角色与角色权限表,一对多
+                b.HasMany(r => r.Permissions).WithOne().HasForeignKey(x => x.RoleId).IsRequired();
+
+                b.HasIndex(r => r.NormalizedName);
+                b.HasIndex(u => u.CreationTime);
+            });
+
+            modelBuilder.Entity<EleRoleClaim>(b =>
+            {
+                b.ToTable("EleRoleClaim");
+
+                b.Property(x => x.Id).ValueGeneratedNever();
+
+                b.Property(uc => uc.ClaimType).HasMaxLength(200).IsRequired();
+                b.Property(uc => uc.ClaimValue).HasMaxLength(200);
+
+                b.HasIndex(uc => uc.RoleId);
+            });
+            modelBuilder.Entity<ElePermission>(b =>
+            {
+                b.ToTable("ElePermission");
+                b.HasKey(x => x.Id);
+                b.HasIndex(u => u.CreationTime);
+            });
+            modelBuilder.Entity<EleRolePermission>(b =>
+            {
+                b.ToTable("EleRolePermission");
+                b.HasKey(rp => new { rp.RoleId, rp.PermissionId });
+
+                b.HasOne<EleRole>().WithMany(r => r.Permissions).HasForeignKey(r => r.RoleId).IsRequired();
+                b.HasOne<ElePermission>().WithMany().HasForeignKey(ur => ur.PermissionId).IsRequired();
+
+                b.HasIndex(rp => new { rp.RoleId, rp.PermissionId });
+            });
+        }
+
+        /// <summary>
+        /// 添加种子数据
+        /// </summary>
+        /// <param name="modelBuilder"></param>
+        private void AddSeedData(ModelBuilder modelBuilder)
+        {
+            //1. 角色Id
+            var adminRoleId = Guid.NewGuid();
+            // 2. 添加角色
+            modelBuilder.Entity<EleRole>().HasData(
+                new EleRole(adminRoleId, "管理员")
+            );
+
+            // 3. 添加用户
+            var adminUserId = Guid.NewGuid();
+            EleUser adminUser = new EleUser(adminUserId, "admin", "admin@eletric.com", "管理员");
+            var ph = new PasswordHasher<EleUser>();
+            var passwordHash = ph.HashPassword(adminUser, "Abc123@");
+            adminUser.SetPasswordHash(passwordHash);
+            modelBuilder.Entity<EleUser>().HasData(adminUser);
+
+            // 4. 给用户加入管理员权限
+            modelBuilder.Entity<EleUserRole>()
+                .HasData(new EleUserRole(adminUserId, adminRoleId));
+
+            //5. 初始化权限
+            var systemId = Guid.NewGuid();
+            var systemUserId = Guid.NewGuid();
+            var systemRoleId = Guid.NewGuid();
+            var systemPermissionId = Guid.NewGuid();
+            var systemRolePermissionId = Guid.NewGuid();
+            var permissionList = new List<ElePermission>
+    {
+        #region 菜单权限
+
+        new ElePermission(systemId, null,"系统管理",  "system", PermissionType.Menu, PermissionApiMethod.GET, PermissionStatus.Normal, icon: "el-icon-s-tools"),
+        new ElePermission(systemUserId,systemId,"用户管理",  "system.user", PermissionType.Menu, PermissionApiMethod.GET, PermissionStatus.Normal, "el-icon-user-solid"),
+        new ElePermission(systemRoleId, systemId, "角色管理", "system.role", PermissionType.Menu, PermissionApiMethod.GET, PermissionStatus.Normal, "peoples"),
+        new ElePermission(systemPermissionId, systemId, "菜单管理", "system.permission", PermissionType.Menu, PermissionApiMethod.GET, PermissionStatus.Normal, "list"),
+        new ElePermission(systemRolePermissionId, systemId, "角色权限", "system.rolepermission", PermissionType.Menu, PermissionApiMethod.GET, PermissionStatus.Normal, "example"),
+
+        #endregion 菜单权限
+
+        #region 按钮、元素权限
+
+        new ElePermission(Guid.NewGuid(),systemUserId, "添加",  "system.user.add", PermissionType.Element, PermissionApiMethod.GET, PermissionStatus.Normal),
+        new ElePermission(Guid.NewGuid(), systemUserId, "编辑", "system.user.edit", PermissionType.Element, PermissionApiMethod.GET, PermissionStatus.Normal),
+        new ElePermission(Guid.NewGuid(), systemUserId, "删除", "system.user.delete", PermissionType.Element, PermissionApiMethod.GET, PermissionStatus.Normal),
+
+        new ElePermission(Guid.NewGuid(), systemRoleId, "添加", "system.role.add", PermissionType.Element, PermissionApiMethod.GET, PermissionStatus.Normal),
+        new ElePermission(Guid.NewGuid(), systemRoleId, "编辑", "system.role.edit", PermissionType.Element, PermissionApiMethod.GET, PermissionStatus.Normal),
+        new ElePermission(Guid.NewGuid(), systemRoleId, "删除", "system.role.delete", PermissionType.Element, PermissionApiMethod.GET, PermissionStatus.Normal),
+
+         new ElePermission(Guid.NewGuid(), systemPermissionId, "添加", "system.permission.add", PermissionType.Element, PermissionApiMethod.GET, PermissionStatus.Normal),
+        new ElePermission(Guid.NewGuid(), systemPermissionId, "编辑", "system.permission.edit", PermissionType.Element, PermissionApiMethod.GET, PermissionStatus.Normal),
+        new ElePermission(Guid.NewGuid(), systemPermissionId, "删除", "system.permission.delete", PermissionType.Element, PermissionApiMethod.GET, PermissionStatus.Normal),
+
+        new ElePermission(Guid.NewGuid(), systemRolePermissionId, "更新", "system.rolepermission.update", PermissionType.Element, PermissionApiMethod.GET, PermissionStatus.Normal),
+
+        #endregion 按钮、元素权限
+    };
+            modelBuilder.Entity<ElePermission>().HasData(permissionList);
+
+            // 6. 给角色分配权限
+            var rolePermissionList = new List<EleRolePermission>();
+            foreach (var permission in permissionList)
+            {
+                rolePermissionList.Add(new EleRolePermission(adminRoleId, permission.Id));
+            }
+            modelBuilder.Entity<EleRolePermission>()
+                .HasData(rolePermissionList);
+        }
+    }
+}

+ 84 - 0
src/Electric/Electric.EntityFrameworkCore/Repository/EfCoreRepository.cs

@@ -0,0 +1,84 @@
+using Electric.Domain.Entities.Commons;
+using Electric.Domain.Repositories;
+using System.Linq.Expressions;
+
+namespace Electric.EntityFrameworkCore.Repository
+{
+    /// <summary>
+    /// 基础仓储
+    /// </summary>
+    /// <typeparam name="TEntity"></typeparam>
+    /// <typeparam name="TKey"></typeparam>
+    public class EfCoreRepository<TEntity, TKey> : IBasicRepository<TEntity, TKey> where TEntity : Entity<TKey>
+    {
+        public Task DeleteAsync(TEntity entity, bool autoSave = false, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task DeleteAsync(TKey id, bool autoSave = false, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task DeleteManyAsync(IEnumerable<TEntity> entities, bool autoSave = false, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task DeleteManyAsync(IEnumerable<TKey> ids, bool autoSave = false, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task<TEntity> FindAsync(TKey id, bool includeDetails = true, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task<long> GetCountAsync(CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task<long> GetCountAsync(Expression<Func<TEntity, bool>> filter, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task<List<TEntity>> GetListAsync(bool includeDetails = false, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task<List<TEntity>> GetListAsync(Expression<Func<TEntity, bool>> filter, int skipCount, int maxResultCount, string sorting, bool includeDetails = false, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task<List<TEntity>> GetPagedListAsync(int skipCount, int maxResultCount, string sorting, bool includeDetails = false, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task<TEntity> InsertAsync(TEntity entity, bool autoSave = false, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task InsertManyAsync(IEnumerable<TEntity> entities, bool autoSave = false, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task<TEntity> UpdateAsync(TEntity entity, bool autoSave = false, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task UpdateManyAsync(IEnumerable<TEntity> entities, bool autoSave = false, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+    }
+}

+ 11 - 0
src/Electric/Electric.EntityFrameworkCore/Repository/Identity/EFCorePermissionRepository.cs

@@ -0,0 +1,11 @@
+using Electric.Domain.Entities.Identity;
+using Electric.Domain.Repositories.Identity;
+
+namespace Electric.EntityFrameworkCore.Repository.Identity
+{
+    /// 权限仓储
+    /// </summary>
+    public class EFCorePermissionRepository : EfCoreRepository<ElePermission, Guid>, IPermissionRepository
+    {
+    }
+}

+ 16 - 0
src/Electric/Electric.EntityFrameworkCore/Repository/Identity/EFCoreRoleRepository.cs

@@ -0,0 +1,16 @@
+using Electric.Domain.Entities.Identity;
+using Electric.Domain.Repositories.Identity;
+
+namespace Electric.EntityFrameworkCore.Repository.Identity
+{
+    /// <summary>
+    /// 角色仓储
+    /// </summary>
+    public class EFCoreRoleRepository : EfCoreRepository<EleRole, Guid>, IRoleRepository
+    {
+        public Task<EleRole> FindByNameAsync(string roleName, bool includeDetails = true, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+    }
+}

+ 26 - 0
src/Electric/Electric.EntityFrameworkCore/Repository/Identity/EFCoreUserRepository.cs

@@ -0,0 +1,26 @@
+using Electric.Domain.Entities.Identity;
+using Electric.Domain.Repositories.Identity;
+
+namespace Electric.EntityFrameworkCore.Repository.Identity
+{
+    /// <summary>
+    /// 用户仓储
+    /// </summary>
+    public class EFCoreUserRepository : EfCoreRepository<EleUser, Guid>, IUserRepository
+    {
+        public Task<EleUser> FindByNameAsync(string userName, bool includeDetails = true, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task<List<EleUser>> GetListByRoleNameAsync(string roleName, bool includeDetails = true, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+
+        public Task<List<string>> GetRoleNamesAsync(Guid id, CancellationToken cancellationToken = default)
+        {
+            throw new NotImplementedException();
+        }
+    }
+}

+ 2 - 1
src/Electric/Electric.WebAPI/Electric.WebAPI.csproj

@@ -1,4 +1,4 @@
-<Project Sdk="Microsoft.NET.Sdk.Web">
+<Project Sdk="Microsoft.NET.Sdk.Web">
 
   <PropertyGroup>
     <TargetFramework>net8.0</TargetFramework>
@@ -15,6 +15,7 @@
   <ItemGroup>
     <ProjectReference Include="..\Electric.Application\Electric.Application.csproj" />
     <ProjectReference Include="..\Electric.Domain\Electric.Domain.csproj" />
+    <ProjectReference Include="..\Electric.EntityFrameworkCore\Electric.EntityFrameworkCore.csproj" />
   </ItemGroup>
 
 </Project>

+ 33 - 0
src/Electric/Electric.WebAPI/Program.cs

@@ -2,6 +2,10 @@ using Electric.Domain.DependencyInjection;
 using Electric.Application.DependencyInjection;
 using Electric.Application.Helpers;
 using Electric.Application.Auth;
+using Electric.Domain.Entities.Identity;
+using Electric.EntityFrameworkCore.Repository;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.AspNetCore.Identity;
 
 var builder = WebApplication.CreateBuilder(args);
 
@@ -30,6 +34,35 @@ builder.Services.AddSwaggerGen();
 
 builder.Services.AddApplication();
 
+//数据库上下文注入
+
+#region 数据库上下文注入
+
+builder.Services.AddDbContext<ApplicationDbContext>(options =>
+{
+    //启用的数据库类型
+    var provider = builder.Configuration.GetValue<string>("DataProvider");
+    switch (provider)
+    {
+        case "MsSql":
+            var msSqlConnection = builder.Configuration.GetConnectionString("MsSqlConnection") ?? throw new InvalidOperationException("MsSqlConnection在appsettings.json未发现");
+            options.UseSqlServer(msSqlConnection);
+            break;
+
+        case "MySql":
+            var mySqlConnection = builder.Configuration.GetConnectionString("MySqlConnection") ?? throw new InvalidOperationException("MySqlConnection在appsettings.json未发现");
+            //MySql需要传入版本,ServerVersion.AutoDetect根据连接字符串自动获取
+            options.UseMySql(mySqlConnection, ServerVersion.AutoDetect(mySqlConnection));
+            break;
+    }
+});
+
+//Identity注入,添加数据库上下文
+builder.Services.AddIdentity<EleUser, EleRole>()
+            .AddEntityFrameworkStores<ApplicationDbContext>().AddDefaultTokenProviders();
+
+#endregion 数据库上下文注入
+
 var app = builder.Build();
 
 // Configure the HTTP request pipeline.

+ 6 - 0
src/Electric/Electric.WebAPI/appsettings.json

@@ -5,6 +5,12 @@
       "Microsoft.AspNetCore": "Warning"
     }
   },
+  "ConnectionStrings": {
+    "MsSqlConnection": "Data Source=.;User Id=sa;Password=wyh_232321;Initial Catalog=ElectricAuth;Encrypt=True;TrustServerCertificate=True;Pooling=true;Min Pool Size=1",
+    "MySqlConnection": ""
+  },
+  // 数据库类型 MsSql/MySql
+  "DataProvider": "MsSql",
   "JWTSettings": {
     "ValidateIssuerSigningKey": true, // 是否验证密钥,bool 类型,默认true
     "IssuerSigningKey": "fdfsdfsdfsfdsfsdfsddddsdfsfsfsdfsd", // 密钥,string 类型,必须是复杂密钥,长度大于16,.NET8+ 长度需大于 32