| | |
| | | |
| | | b.HasIndex("ParentId"); |
| | | |
| | | b.ToTable("Department", null, t => |
| | | b.ToTable("Department", t => |
| | | { |
| | | t.HasComment("部门"); |
| | | }); |
| | |
| | | |
| | | b.HasKey("Id"); |
| | | |
| | | b.ToTable("DictionaryCategory", null, t => |
| | | b.ToTable("DictionaryCategory", t => |
| | | { |
| | | t.HasComment("字典类别"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("ParentId"); |
| | | |
| | | b.ToTable("DictionaryData", null, t => |
| | | b.ToTable("DictionaryData", t => |
| | | { |
| | | t.HasComment("字典数据"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("LicenseImageId"); |
| | | |
| | | b.ToTable("Enterprise", null, t => |
| | | b.ToTable("Enterprise", t => |
| | | { |
| | | t.HasComment("企业"); |
| | | }); |
| | |
| | | |
| | | b.HasKey("Id"); |
| | | |
| | | b.ToTable("FileStore", null, t => |
| | | b.ToTable("FileStore", t => |
| | | { |
| | | t.HasComment("文件存储"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("StoreId"); |
| | | |
| | | b.ToTable("FileVirtualPath", null, t => |
| | | b.ToTable("FileVirtualPath", t => |
| | | { |
| | | t.HasComment("文件虚拟路径"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("ParentId"); |
| | | |
| | | b.ToTable("Menu", null, t => |
| | | b.ToTable("Menu", t => |
| | | { |
| | | t.HasComment("菜单"); |
| | | }); |
| | |
| | | .ValueGeneratedOnAdd() |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<string>("ActionName") |
| | | .IsRequired() |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("委托名称"); |
| | | |
| | | b.Property<string>("Code") |
| | | .IsRequired() |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("编号"); |
| | | |
| | | b.Property<int>("Controller") |
| | | .HasColumnType("int") |
| | | .HasComment("控制器"); |
| | | |
| | | b.Property<DateTimeOffset>("CreatedTime") |
| | | .HasColumnType("datetimeoffset"); |
| | |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("名称"); |
| | | |
| | | b.Property<string>("RequestTypeFullName") |
| | | .IsRequired() |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("请求类型全名"); |
| | | |
| | | b.Property<string>("RequestTypeName") |
| | | .IsRequired() |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("请求类型名称"); |
| | | |
| | | b.Property<string>("ResponseTypeFullName") |
| | | .IsRequired() |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("响应类型全名"); |
| | | |
| | | b.Property<string>("ResponseTypeName") |
| | | .IsRequired() |
| | |
| | | .IsRequired() |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("路由"); |
| | | |
| | | b.Property<string>("Service") |
| | | .IsRequired() |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("微服务"); |
| | | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int") |
| | |
| | | |
| | | b.HasKey("Id"); |
| | | |
| | | b.ToTable("Resource", null, t => |
| | | b.ToTable("Resource", t => |
| | | { |
| | | t.HasComment("资源"); |
| | | }); |
| | |
| | | .HasColumnType("uniqueidentifier") |
| | | .HasComment("创建操作人"); |
| | | |
| | | b.Property<int>("DataPower") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<bool>("IsDeleted") |
| | | .HasColumnType("bit") |
| | | .HasComment("是否删除"); |
| | |
| | | .HasMaxLength(128) |
| | | .HasColumnType("nvarchar(128)") |
| | | .HasComment("名称"); |
| | | |
| | | b.Property<string>("Remark") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int") |
| | |
| | | |
| | | b.HasKey("Id"); |
| | | |
| | | b.ToTable("Role", null, t => |
| | | b.ToTable("Role", t => |
| | | { |
| | | t.HasComment("角色"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("RoleId"); |
| | | |
| | | b.ToTable("RoleMenu", null, t => |
| | | b.ToTable("RoleMenu", t => |
| | | { |
| | | t.HasComment("角色菜单"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("RoleId"); |
| | | |
| | | b.ToTable("RoleResource", null, t => |
| | | b.ToTable("RoleResource", t => |
| | | { |
| | | t.HasComment("角色资源"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("EnterpriseId"); |
| | | |
| | | b.ToTable("TaskInfo", null, t => |
| | | b.ToTable("TaskInfo", t => |
| | | { |
| | | t.HasComment("任务信息"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("BenefitId1"); |
| | | |
| | | b.ToTable("TaskInfoBenefit", null, t => |
| | | b.ToTable("TaskInfoBenefit", t => |
| | | { |
| | | t.HasComment("任务福利"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("TypeId"); |
| | | |
| | | b.ToTable("TaskInfoCredentialLimit", (string)null); |
| | | b.ToTable("TaskInfoCredentialLimit"); |
| | | }); |
| | | |
| | | modelBuilder.Entity("FlexJobApi.Core.TaskInfoUser", b => |
| | |
| | | |
| | | b.HasIndex("UserInfoId"); |
| | | |
| | | b.ToTable("TaskInfoUser", null, t => |
| | | b.ToTable("TaskInfoUser", t => |
| | | { |
| | | t.HasComment("任务用户信息"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("IdentityImgId"); |
| | | |
| | | b.ToTable("UserAuth", null, t => |
| | | b.ToTable("UserAuth", t => |
| | | { |
| | | t.HasComment("用户"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("UserAuthId"); |
| | | |
| | | b.ToTable("UserInfo", null, t => |
| | | b.ToTable("UserInfo", t => |
| | | { |
| | | t.HasComment("用户信息"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("UserInfoId"); |
| | | |
| | | b.ToTable("UserInfoBankCard", null, t => |
| | | b.ToTable("UserInfoBankCard", t => |
| | | { |
| | | t.HasComment("用户银行卡信息"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("UserInfoId"); |
| | | |
| | | b.ToTable("UserInfoCredential", null, t => |
| | | b.ToTable("UserInfoCredential", t => |
| | | { |
| | | t.HasComment("用户信息资格证书"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("UserInfoId"); |
| | | |
| | | b.ToTable("UserInfoDepartment", null, t => |
| | | b.ToTable("UserInfoDepartment", t => |
| | | { |
| | | t.HasComment("用户信息部门"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("UserInfoId"); |
| | | |
| | | b.ToTable("UserInfoExpectJob", null, t => |
| | | b.ToTable("UserInfoExpectJob", t => |
| | | { |
| | | t.HasComment("用户信息期望岗位"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("UserInfoId"); |
| | | |
| | | b.ToTable("UserInfoPhoto", null, t => |
| | | b.ToTable("UserInfoPhoto", t => |
| | | { |
| | | t.HasComment("用户信息生活照"); |
| | | }); |
| | |
| | | |
| | | b.HasIndex("UserInfoId"); |
| | | |
| | | b.ToTable("UserInfoRole", null, t => |
| | | b.ToTable("UserInfoRole", t => |
| | | { |
| | | t.HasComment("用户信息角色"); |
| | | }); |
| | |
| | | .IsRequired(); |
| | | |
| | | b.HasOne("FlexJobApi.Core.Department", "Parent") |
| | | .WithMany("Childrens") |
| | | .WithMany("Children") |
| | | .HasForeignKey("ParentId"); |
| | | |
| | | b.Navigation("Enterprise"); |
| | |
| | | .IsRequired(); |
| | | |
| | | b.HasOne("FlexJobApi.Core.DictionaryData", "Parent") |
| | | .WithMany("Childrens") |
| | | .WithMany("Children") |
| | | .HasForeignKey("ParentId"); |
| | | |
| | | b.Navigation("Category"); |
| | |
| | | modelBuilder.Entity("FlexJobApi.Core.Menu", b => |
| | | { |
| | | b.HasOne("FlexJobApi.Core.Menu", "Parent") |
| | | .WithMany("Childrens") |
| | | .WithMany("Children") |
| | | .HasForeignKey("ParentId"); |
| | | |
| | | b.Navigation("Parent"); |
| | |
| | | |
| | | modelBuilder.Entity("FlexJobApi.Core.Department", b => |
| | | { |
| | | b.Navigation("Childrens"); |
| | | b.Navigation("Children"); |
| | | }); |
| | | |
| | | modelBuilder.Entity("FlexJobApi.Core.DictionaryData", b => |
| | | { |
| | | b.Navigation("Childrens"); |
| | | b.Navigation("Children"); |
| | | }); |
| | | |
| | | modelBuilder.Entity("FlexJobApi.Core.Enterprise", b => |
| | |
| | | |
| | | modelBuilder.Entity("FlexJobApi.Core.Menu", b => |
| | | { |
| | | b.Navigation("Childrens"); |
| | | b.Navigation("Children"); |
| | | }); |
| | | |
| | | modelBuilder.Entity("FlexJobApi.Core.Role", b => |