Browse Source

Merge pull request #57 from colinin/3.0

support docker-compose
pull/81/head
cKey 5 years ago
committed by GitHub
parent
commit
14d14f4bd7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      aspnet-core/LINGYUN.MicroService.sln
  2. 854
      aspnet-core/database/ApiGateway-Init-SqlServer.sql
  3. 22
      aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Application.Contracts/LINGYUN/Abp/IdentityServer/Grants/Dto/PersistedGrantDto.cs
  4. 10
      aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Application.Contracts/LINGYUN/Abp/IdentityServer/Grants/Dto/PersistedGrantGetPagedDto.cs
  5. 5
      aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Application/LINGYUN.Abp.IdentityServer.Application.csproj
  6. 1
      aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Application/LINGYUN/Abp/IdentityServer/AbpIdentityServerApplicationModule.cs
  7. 26
      aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Application/LINGYUN/Abp/IdentityServer/Grants/PersistedGrantAppService.cs
  8. 12
      aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Domain/LINGYUN.Abp.IdentityServer.Domain.csproj
  9. 9
      aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Domain/LINGYUN/Abp/IdentityServer/AbpIdentityServerDomainModule.cs
  10. 24
      aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Domain/LINGYUN/Abp/IdentityServer/Grants/IPersistentGrantRepository.cs
  11. 16
      aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.EntityFrameworkCore/LINGYUN.Abp.IdentityServer.EntityFrameworkCore.csproj
  12. 10
      aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.EntityFrameworkCore/LINGYUN/Abp/IdentityServer/EntityFrameworkCore/AbpIdentityServerEntityFrameworkCoreModule.cs
  13. 48
      aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.EntityFrameworkCore/LINGYUN/Abp/IdentityServer/Grants/EfCorePersistentGrantRepository.cs
  14. 5
      aspnet-core/services/account/AuthServer.Host/Dockerfile
  15. 13
      aspnet-core/services/admin/LINGYUN.BackendAdminApp.Host/Dockerfile
  16. 7
      aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/Dockerfile
  17. 7
      aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Dockerfile
  18. 13
      aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/Dockerfile
  19. 13
      aspnet-core/services/platform/LINGYUN.Platform.HttpApi.Host/Dockerfile
  20. 48
      docker-compose.override.yml
  21. 65
      docker-compose.yml
  22. 12
      vueJs/Dockerfile
  23. 68
      vueJs/docker/nginx/default.conf
  24. 38
      vueJs/docker/nginx/nginx.conf
  25. 10
      vueJs/src/router/modules/admin.ts
  26. 10
      vueJs/src/router/modules/apigateway.ts
  27. 2
      vueJs/src/router/modules/file-management.ts
  28. 10
      vueJs/src/router/modules/identityServer.ts

14
aspnet-core/LINGYUN.MicroService.sln

@ -205,6 +205,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LINGYUN.Abp.FileManagement.
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LINGYUN.Platform.HttpApi.Host", "services\platform\LINGYUN.Platform.HttpApi.Host\LINGYUN.Platform.HttpApi.Host.csproj", "{372123C3-3AFD-42C8-BB80-778322EA72C3}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LINGYUN.Platform.HttpApi.Host", "services\platform\LINGYUN.Platform.HttpApi.Host\LINGYUN.Platform.HttpApi.Host.csproj", "{372123C3-3AFD-42C8-BB80-778322EA72C3}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LINGYUN.Abp.IdentityServer.Domain", "modules\identityServer\LINGYUN.Abp.IdentityServer.Domain\LINGYUN.Abp.IdentityServer.Domain.csproj", "{F359AAA1-C854-444A-88F2-1C0D8A07F864}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LINGYUN.Abp.IdentityServer.EntityFrameworkCore", "modules\identityServer\LINGYUN.Abp.IdentityServer.EntityFrameworkCore\LINGYUN.Abp.IdentityServer.EntityFrameworkCore.csproj", "{5D0ED1FC-3A7C-4531-9512-832E73AD9555}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
@ -543,6 +547,14 @@ Global
{372123C3-3AFD-42C8-BB80-778322EA72C3}.Debug|Any CPU.Build.0 = Debug|Any CPU {372123C3-3AFD-42C8-BB80-778322EA72C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{372123C3-3AFD-42C8-BB80-778322EA72C3}.Release|Any CPU.ActiveCfg = Release|Any CPU {372123C3-3AFD-42C8-BB80-778322EA72C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{372123C3-3AFD-42C8-BB80-778322EA72C3}.Release|Any CPU.Build.0 = Release|Any CPU {372123C3-3AFD-42C8-BB80-778322EA72C3}.Release|Any CPU.Build.0 = Release|Any CPU
{F359AAA1-C854-444A-88F2-1C0D8A07F864}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F359AAA1-C854-444A-88F2-1C0D8A07F864}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F359AAA1-C854-444A-88F2-1C0D8A07F864}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F359AAA1-C854-444A-88F2-1C0D8A07F864}.Release|Any CPU.Build.0 = Release|Any CPU
{5D0ED1FC-3A7C-4531-9512-832E73AD9555}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5D0ED1FC-3A7C-4531-9512-832E73AD9555}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5D0ED1FC-3A7C-4531-9512-832E73AD9555}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5D0ED1FC-3A7C-4531-9512-832E73AD9555}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
@ -646,6 +658,8 @@ Global
{21FCEF89-9A3F-476E-833A-A9C2131B2AE6} = {B05CB08F-C088-4D6D-97EE-A94A5D1AE4A6} {21FCEF89-9A3F-476E-833A-A9C2131B2AE6} = {B05CB08F-C088-4D6D-97EE-A94A5D1AE4A6}
{14ECCFD6-2DC1-4124-BE26-15E8D28E3E90} = {B05CB08F-C088-4D6D-97EE-A94A5D1AE4A6} {14ECCFD6-2DC1-4124-BE26-15E8D28E3E90} = {B05CB08F-C088-4D6D-97EE-A94A5D1AE4A6}
{372123C3-3AFD-42C8-BB80-778322EA72C3} = {E5D1B78A-1A8F-4D52-BF99-A4A863ADE898} {372123C3-3AFD-42C8-BB80-778322EA72C3} = {E5D1B78A-1A8F-4D52-BF99-A4A863ADE898}
{F359AAA1-C854-444A-88F2-1C0D8A07F864} = {0439B173-F41E-4CE0-A44A-CCB70328F272}
{5D0ED1FC-3A7C-4531-9512-832E73AD9555} = {0439B173-F41E-4CE0-A44A-CCB70328F272}
EndGlobalSection EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C95FDF91-16F2-4A8B-A4BE-0E62D1B66718} SolutionGuid = {C95FDF91-16F2-4A8B-A4BE-0E62D1B66718}

854
aspnet-core/database/ApiGateway-Init-SqlServer.sql

@ -0,0 +1,854 @@
-- ----------------------------
-- Records of appapigatewayaggregate
-- ----------------------------
SET IDENTITY_INSERT [appapigatewayaggregate] ON
INSERT INTO [appapigatewayaggregate]([Id],[ExtraProperties],[ConcurrencyStamp],[AppId],[Name],[ReRouteId],[ReRouteKeys],[UpstreamPathTemplate],[UpstreamHost],[ReRouteIsCaseSensitive],[Aggregator],[Priority],[UpstreamHttpMethod]) VALUES (5, '{}', '7ad8b6d6c53a4ed0843ea55478e7dd6e', 'TEST-APP', 'abp接口代理服务', 1263083077348196352, 'platform-api-definition,backend-admin-api-definition,messages-api-definition,apigateway-api-definition,', '/api/abp/api-definition', '', 1, 'AbpApiDefinitionAggregator', NULL, '');
INSERT INTO [appapigatewayaggregate]([Id],[ExtraProperties],[ConcurrencyStamp],[AppId],[Name],[ReRouteId],[ReRouteKeys],[UpstreamPathTemplate],[UpstreamHost],[ReRouteIsCaseSensitive],[Aggregator],[Priority],[UpstreamHttpMethod]) VALUES (6, '{}', 'a28de19ee118498188cd4b3ed1f79ea4', 'TEST-APP', 'abp框架配置', 1263102116090970112, 'apigateway-configuration,platform-configuration,backend-admin-configuration,messages-configuration,', '/api/abp/application-configuration', '', 1, 'AbpApiDefinitionAggregator', NULL, '');
SET IDENTITY_INSERT [appapigatewayaggregate] OFF
-- ----------------------------
-- ----------------------------
-- Records of appapigatewayauthoptions
-- ----------------------------
SET IDENTITY_INSERT [appapigatewayauthoptions] ON
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (3, 1261299170387169280, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (4, 1261585859064872960, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (5, 1261586605810368512, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (6, 1261587558609436672, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (7, 1261588213298348032, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (8, 1261588367619375104, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (9, 1261588628450557952, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (10, 1261588881564221440, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (11, 1261588983053795328, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (12, 1261589139039961088, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (13, 1261589197483393024, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (14, 1261589278857084928, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (15, 1261589420356124672, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (16, 1261589960393736192, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (17, 1261606600242085888, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (18, 1261606689601732608, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (19, 1261681880965038080, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (20, 1261682144920977408, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (21, 1262220447629058048, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (22, 1262230734939758592, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (23, 1262296916350869504, NULL, '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (24, 1262632376348594176, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (25, 1262632791869902848, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (26, 1262632904575045632, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (27, 1262632976616411136, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (28, 1262660336921235456, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (29, 1262660528277966848, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (30, 1262660706875625472, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (31, 1262660966393991168, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (32, 1262661109474283520, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (33, 1262663888804663296, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (34, 1262664024096133120, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (35, 1262664186252120064, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (36, 1262664357044178944, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (37, 1262664632928718848, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (38, 1262664751409418240, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (39, 1262664871274237952, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (40, 1262665026111164416, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (41, 1262665159905267712, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (42, 1262665329829105664, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (43, 1262665456471920640, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (44, 1262665628165754880, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (45, 1262666172682883072, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (47, 1262723402331885568, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (48, 1262935771746734080, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (49, 1262935906522304512, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (50, 1262936009924481024, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (52, 1263074419073593344, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (53, 1263075249394790400, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (54, 1263075593499684864, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (56, 1263101898440146944, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (57, 1263303878648569856, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (58, 1263304204797648896, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (59, 1263304872891555840, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (60, 1263305106250047488, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (61, 1263305244594970624, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (62, 1263305430536855552, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (63, 1263639172959174656, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (64, 1264799968944640000, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (65, 1264800070161584128, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (66, 1267360794414161920, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (67, 1267383367629807616, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (68, 1267817055527632896, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (69, 1267817221286526976, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (70, 1268893687085518848, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (91, 1285579388652576768, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (92, 1285580096881778688, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (93, 1285582774663864320, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (94, 1288657613998579712, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (95, 1288657941770854400, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (96, 1288658134067109888, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (97, 1288658305156964352, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (98, 1288658491216289792, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (99, 1288658638302142464, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (100, 1288658791784308736, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (101, 1290849478956199936, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (102, 1290849628051124224, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (103, 1290849798553776128, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (104, 1290849978032238592, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (105, 1291259822512693248, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (106, 1292620505149145088, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (107, 1292620665505775616, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (108, 1292620843398791168, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (109, 1292621027574874112, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (110, 1292621363161137152, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (111, 1292621494837116928, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (112, 1292621629260365824, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (113, 1292622526073864192, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (114, 1293470838745821184, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (115, 1293471661785706496, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (116, 1293472678392721408, '', '');
INSERT INTO [appapigatewayauthoptions]([Id],[ReRouteId],[AuthenticationProviderKey],[AllowedScopes]) VALUES (117, 1293472857510473728, '', '');
SET IDENTITY_INSERT [appapigatewayauthoptions] OFF
-- ----------------------------
-- Records of appapigatewaybalanceroptions
-- ----------------------------
SET IDENTITY_INSERT [appapigatewaybalanceroptions] ON
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (1, 1260841964962947072, NULL, 'LeastConnection', NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (4, NULL, 1261299170387169280, 'LeastConnection', NULL, 60000);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (5, NULL, 1261585859064872960, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (6, NULL, 1261586605810368512, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (7, NULL, 1261587558609436672, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (8, NULL, 1261588213298348032, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (9, NULL, 1261588367619375104, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (10, NULL, 1261588628450557952, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (11, NULL, 1261588881564221440, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (12, NULL, 1261588983053795328, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (13, NULL, 1261589139039961088, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (14, NULL, 1261589197483393024, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (15, NULL, 1261589278857084928, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (16, NULL, 1261589420356124672, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (17, NULL, 1261589960393736192, 'LeastConnection', NULL, 60000);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (18, NULL, 1261606600242085888, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (19, NULL, 1261606689601732608, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (20, NULL, 1261681880965038080, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (21, NULL, 1261682144920977408, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (22, NULL, 1262220447629058048, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (23, NULL, 1262230734939758592, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (24, NULL, 1262296916350869504, NULL, NULL, NULL);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (25, NULL, 1262632376348594176, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (26, NULL, 1262632791869902848, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (27, NULL, 1262632904575045632, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (28, NULL, 1262632976616411136, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (29, NULL, 1262660336921235456, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (30, NULL, 1262660528277966848, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (31, NULL, 1262660706875625472, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (32, NULL, 1262660966393991168, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (33, NULL, 1262661109474283520, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (34, NULL, 1262663888804663296, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (35, NULL, 1262664024096133120, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (36, NULL, 1262664186252120064, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (37, NULL, 1262664357044178944, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (38, NULL, 1262664632928718848, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (39, NULL, 1262664751409418240, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (40, NULL, 1262664871274237952, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (41, NULL, 1262665026111164416, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (42, NULL, 1262665159905267712, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (43, NULL, 1262665329829105664, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (44, NULL, 1262665456471920640, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (45, NULL, 1262665628165754880, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (46, NULL, 1262666172682883072, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (48, NULL, 1262723402331885568, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (49, NULL, 1262935771746734080, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (50, NULL, 1262935906522304512, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (51, NULL, 1262936009924481024, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (53, NULL, 1263074419073593344, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (54, NULL, 1263075249394790400, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (55, NULL, 1263075593499684864, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (57, NULL, 1263101898440146944, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (58, NULL, 1263303878648569856, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (59, NULL, 1263304204797648896, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (60, NULL, 1263304872891555840, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (61, NULL, 1263305106250047488, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (62, NULL, 1263305244594970624, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (63, NULL, 1263305430536855552, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (64, NULL, 1263639172959174656, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (65, NULL, 1264799968944640000, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (66, NULL, 1264800070161584128, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (68, NULL, 1267360794414161920, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (69, NULL, 1267383367629807616, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (70, NULL, 1267817055527632896, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (71, NULL, 1267817221286526976, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (72, NULL, 1268893687085518848, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (94, NULL, 1285579388652576768, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (95, NULL, 1285580096881778688, 'LeastConnection', '', 60000);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (96, NULL, 1285582774663864320, 'LeastConnection', '', 60000);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (97, NULL, 1288657613998579712, 'LeastConnection', '', 60000);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (98, NULL, 1288657941770854400, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (99, NULL, 1288658134067109888, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (100, NULL, 1288658305156964352, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (101, NULL, 1288658491216289792, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (102, NULL, 1288658638302142464, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (103, NULL, 1288658791784308736, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (104, NULL, 1290849478956199936, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (105, NULL, 1290849628051124224, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (106, NULL, 1290849798553776128, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (107, NULL, 1290849978032238592, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (108, NULL, 1291259822512693248, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (109, NULL, 1292620505149145088, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (110, NULL, 1292620665505775616, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (111, NULL, 1292620843398791168, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (112, NULL, 1292621027574874112, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (113, NULL, 1292621363161137152, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (114, NULL, 1292621494837116928, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (115, NULL, 1292621629260365824, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (116, NULL, 1292622526073864192, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (117, NULL, 1293470838745821184, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (118, NULL, 1293471661785706496, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (119, NULL, 1293472678392721408, '', '', 0);
INSERT INTO [appapigatewaybalanceroptions]([Id],[ItemId],[ReRouteId],[Type],[Key],[Expiry]) VALUES (120, NULL, 1293472857510473728, '', '', 0);
SET IDENTITY_INSERT [appapigatewaybalanceroptions] OFF
-- ----------------------------
-- Records of appapigatewaycacheoptions
-- ----------------------------
SET IDENTITY_INSERT [appapigatewaycacheoptions] ON
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (3, 1261299170387169280, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (4, 1261585859064872960, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (5, 1261586605810368512, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (6, 1261587558609436672, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (7, 1261588213298348032, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (8, 1261588367619375104, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (9, 1261588628450557952, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (10, 1261588881564221440, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (11, 1261588983053795328, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (12, 1261589139039961088, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (13, 1261589197483393024, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (14, 1261589278857084928, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (15, 1261589420356124672, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (16, 1261589960393736192, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (17, 1261606600242085888, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (18, 1261606689601732608, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (19, 1261681880965038080, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (20, 1261682144920977408, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (21, 1262220447629058048, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (22, 1262230734939758592, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (23, 1262296916350869504, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (24, 1262632376348594176, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (25, 1262632791869902848, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (26, 1262632904575045632, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (27, 1262632976616411136, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (28, 1262660336921235456, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (29, 1262660528277966848, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (30, 1262660706875625472, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (31, 1262660966393991168, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (32, 1262661109474283520, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (33, 1262663888804663296, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (34, 1262664024096133120, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (35, 1262664186252120064, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (36, 1262664357044178944, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (37, 1262664632928718848, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (38, 1262664751409418240, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (39, 1262664871274237952, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (40, 1262665026111164416, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (41, 1262665159905267712, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (42, 1262665329829105664, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (43, 1262665456471920640, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (44, 1262665628165754880, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (45, 1262666172682883072, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (47, 1262723402331885568, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (48, 1262935771746734080, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (49, 1262935906522304512, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (50, 1262936009924481024, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (52, 1263074419073593344, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (53, 1263075249394790400, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (54, 1263075593499684864, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (56, 1263101898440146944, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (57, 1263303878648569856, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (58, 1263304204797648896, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (59, 1263304872891555840, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (60, 1263305106250047488, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (61, 1263305244594970624, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (62, 1263305430536855552, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (63, 1263639172959174656, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (64, 1264799968944640000, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (65, 1264800070161584128, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (66, 1267360794414161920, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (67, 1267383367629807616, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (68, 1267817055527632896, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (69, 1267817221286526976, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (70, 1268893687085518848, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (91, 1285579388652576768, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (92, 1285580096881778688, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (93, 1285582774663864320, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (94, 1288657613998579712, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (95, 1288657941770854400, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (96, 1288658134067109888, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (97, 1288658305156964352, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (98, 1288658491216289792, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (99, 1288658638302142464, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (100, 1288658791784308736, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (101, 1290849478956199936, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (102, 1290849628051124224, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (103, 1290849798553776128, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (104, 1290849978032238592, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (105, 1291259822512693248, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (106, 1292620505149145088, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (107, 1292620665505775616, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (108, 1292620843398791168, NULL, NULL);
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (109, 1292621027574874112, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (110, 1292621363161137152, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (111, 1292621494837116928, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (112, 1292621629260365824, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (113, 1292622526073864192, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (114, 1293470838745821184, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (115, 1293471661785706496, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (116, 1293472678392721408, 0, '');
INSERT INTO [appapigatewaycacheoptions]([Id],[ReRouteId],[TtlSeconds],[Region]) VALUES (117, 1293472857510473728, 0, '');
SET IDENTITY_INSERT [appapigatewaycacheoptions] OFF
-- ----------------------------
-- Records of appapigatewaydiscovery
-- ----------------------------
SET IDENTITY_INSERT [appapigatewaydiscovery] ON
INSERT INTO [appapigatewaydiscovery]([Id]
,[ItemId]
,[Host]
,[Port]
,[Type]
,[Token]
,[ConfigurationKey]
,[PollingInterval]
,[Namespace]
,[Scheme]) VALUES (1, 1260841964962947072, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
SET IDENTITY_INSERT [appapigatewaydiscovery] OFF
-- ----------------------------
-- Records of appapigatewayglobalconfiguration
-- ----------------------------
SET IDENTITY_INSERT [appapigatewayglobalconfiguration] ON
INSERT INTO [appapigatewayglobalconfiguration]([Id]
,[ExtraProperties]
,[ConcurrencyStamp]
,[ItemId]
,[RequestIdKey]
,[BaseUrl]
,[DownstreamScheme]
,[DownstreamHttpVersion]
,[IsDeleted]
,[IsActive]
,[AppId]) VALUES (1, '{}', 'f7973118f2c2425c8cc96b59883b99aa', 1260841964962947072, NULL, 'http://localhost:30000', 'HTTP', NULL, 0, 1, 'TEST-APP');
SET IDENTITY_INSERT [appapigatewayglobalconfiguration] OFF
-- ----------------------------
-- Records of appapigatewayhttpoptions
-- ----------------------------
SET IDENTITY_INSERT [appapigatewayhttpoptions] ON
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (1, 1260841964962947072, NULL, NULL, 0, 0, 1, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (4, NULL, 1261299170387169280, 1000, 1, 0, 1, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (5, NULL, 1261585859064872960, NULL, 0, 0, 1, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (6, NULL, 1261586605810368512, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (7, NULL, 1261587558609436672, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (8, NULL, 1261588213298348032, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (9, NULL, 1261588367619375104, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (10, NULL, 1261588628450557952, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (11, NULL, 1261588881564221440, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (12, NULL, 1261588983053795328, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (13, NULL, 1261589139039961088, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (14, NULL, 1261589197483393024, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (15, NULL, 1261589278857084928, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (16, NULL, 1261589420356124672, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (17, NULL, 1261589960393736192, 1000, 1, 0, 1, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (18, NULL, 1261606600242085888, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (19, NULL, 1261606689601732608, NULL, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (20, NULL, 1261681880965038080, 100, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (21, NULL, 1261682144920977408, 100, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (22, NULL, 1262220447629058048, NULL, 0, 0, 1, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (23, NULL, 1262230734939758592, NULL, 0, 0, 1, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (24, NULL, 1262296916350869504, NULL, 0, 0, 1, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (25, NULL, 1262632376348594176, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (26, NULL, 1262632791869902848, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (27, NULL, 1262632904575045632, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (28, NULL, 1262632976616411136, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (29, NULL, 1262660336921235456, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (30, NULL, 1262660528277966848, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (31, NULL, 1262660706875625472, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (32, NULL, 1262660966393991168, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (33, NULL, 1262661109474283520, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (34, NULL, 1262663888804663296, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (35, NULL, 1262664024096133120, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (36, NULL, 1262664186252120064, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (37, NULL, 1262664357044178944, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (38, NULL, 1262664632928718848, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (39, NULL, 1262664751409418240, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (40, NULL, 1262664871274237952, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (41, NULL, 1262665026111164416, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (42, NULL, 1262665159905267712, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (43, NULL, 1262665329829105664, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (44, NULL, 1262665456471920640, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (45, NULL, 1262665628165754880, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (46, NULL, 1262666172682883072, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (48, NULL, 1262723402331885568, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (49, NULL, 1262935771746734080, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (50, NULL, 1262935906522304512, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (51, NULL, 1262936009924481024, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (53, NULL, 1263074419073593344, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (54, NULL, 1263075249394790400, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (55, NULL, 1263075593499684864, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (57, NULL, 1263101898440146944, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (58, NULL, 1263303878648569856, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (59, NULL, 1263304204797648896, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (60, NULL, 1263304872891555840, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (61, NULL, 1263305106250047488, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (62, NULL, 1263305244594970624, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (63, NULL, 1263305430536855552, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (64, NULL, 1263639172959174656, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (65, NULL, 1264799968944640000, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (66, NULL, 1264800070161584128, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (68, NULL, 1267360794414161920, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (69, NULL, 1267383367629807616, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (70, NULL, 1267817055527632896, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (71, NULL, 1267817221286526976, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (72, NULL, 1268893687085518848, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (94, NULL, 1285579388652576768, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (95, NULL, 1285580096881778688, 1000, 0, 0, 1, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (96, NULL, 1285582774663864320, 1000, 0, 0, 1, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (97, NULL, 1288657613998579712, 1000, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (98, NULL, 1288657941770854400, 1000, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (99, NULL, 1288658134067109888, 1000, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (100, NULL, 1288658305156964352, 1000, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (101, NULL, 1288658491216289792, 1000, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (102, NULL, 1288658638302142464, 1000, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (103, NULL, 1288658791784308736, 1000, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (104, NULL, 1290849478956199936, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (105, NULL, 1290849628051124224, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (106, NULL, 1290849798553776128, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (107, NULL, 1290849978032238592, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (108, NULL, 1291259822512693248, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (109, NULL, 1292620505149145088, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (110, NULL, 1292620665505775616, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (111, NULL, 1292620843398791168, 100, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (112, NULL, 1292621027574874112, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (113, NULL, 1292621363161137152, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (114, NULL, 1292621494837116928, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (115, NULL, 1292621629260365824, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (116, NULL, 1292622526073864192, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (117, NULL, 1293470838745821184, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (118, NULL, 1293471661785706496, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (119, NULL, 1293472678392721408, 0, 0, 0, 0, 0);
INSERT INTO [appapigatewayhttpoptions]([Id],[ItemId],[ReRouteId],[MaxConnectionsPerServer],[AllowAutoRedirect],[UseCookieContainer],[UseTracing],[UseProxy]) VALUES (120, NULL, 1293472857510473728, 0, 0, 0, 0, 0);
SET IDENTITY_INSERT [appapigatewayhttpoptions] OFF
-- ----------------------------
-- Records of appapigatewayqosoptions
-- ----------------------------
SET IDENTITY_INSERT [appapigatewayqosoptions] ON
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (1, 1260841964962947072, NULL, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (4, NULL, 1261299170387169280, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (5, NULL, 1261585859064872960, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (6, NULL, 1261586605810368512, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (7, NULL, 1261587558609436672, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (8, NULL, 1261588213298348032, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (9, NULL, 1261588367619375104, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (10, NULL, 1261588628450557952, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (11, NULL, 1261588881564221440, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (12, NULL, 1261588983053795328, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (13, NULL, 1261589139039961088, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (14, NULL, 1261589197483393024, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (15, NULL, 1261589278857084928, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (16, NULL, 1261589420356124672, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (17, NULL, 1261589960393736192, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (18, NULL, 1261606600242085888, NULL, NULL, NULL);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (19, NULL, 1261606689601732608, NULL, NULL, NULL);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (20, NULL, 1261681880965038080, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (21, NULL, 1261682144920977408, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (22, NULL, 1262220447629058048, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (23, NULL, 1262230734939758592, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (24, NULL, 1262296916350869504, 60, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (25, NULL, 1262632376348594176, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (26, NULL, 1262632791869902848, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (27, NULL, 1262632904575045632, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (28, NULL, 1262632976616411136, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (29, NULL, 1262660336921235456, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (30, NULL, 1262660528277966848, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (31, NULL, 1262660706875625472, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (32, NULL, 1262660966393991168, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (33, NULL, 1262661109474283520, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (34, NULL, 1262663888804663296, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (35, NULL, 1262664024096133120, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (36, NULL, 1262664186252120064, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (37, NULL, 1262664357044178944, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (38, NULL, 1262664632928718848, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (39, NULL, 1262664751409418240, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (40, NULL, 1262664871274237952, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (41, NULL, 1262665026111164416, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (42, NULL, 1262665159905267712, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (43, NULL, 1262665329829105664, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (44, NULL, 1262665456471920640, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (45, NULL, 1262665628165754880, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (46, NULL, 1262666172682883072, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (48, NULL, 1262723402331885568, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (49, NULL, 1262935771746734080, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (50, NULL, 1262935906522304512, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (51, NULL, 1262936009924481024, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (53, NULL, 1263074419073593344, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (54, NULL, 1263075249394790400, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (55, NULL, 1263075593499684864, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (57, NULL, 1263101898440146944, 50, 60000, 120000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (58, NULL, 1263303878648569856, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (59, NULL, 1263304204797648896, 50, 60000, 120000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (60, NULL, 1263304872891555840, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (61, NULL, 1263305106250047488, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (62, NULL, 1263305244594970624, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (63, NULL, 1263305430536855552, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (64, NULL, 1263639172959174656, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (65, NULL, 1264799968944640000, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (66, NULL, 1264800070161584128, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (68, NULL, 1267360794414161920, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (69, NULL, 1267383367629807616, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (70, NULL, 1267817055527632896, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (71, NULL, 1267817221286526976, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (72, NULL, 1268893687085518848, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (94, NULL, 1285579388652576768, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (95, NULL, 1285580096881778688, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (96, NULL, 1285582774663864320, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (97, NULL, 1288657613998579712, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (98, NULL, 1288657941770854400, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (99, NULL, 1288658134067109888, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (100, NULL, 1288658305156964352, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (101, NULL, 1288658491216289792, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (102, NULL, 1288658638302142464, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (103, NULL, 1288658791784308736, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (104, NULL, 1290849478956199936, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (105, NULL, 1290849628051124224, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (106, NULL, 1290849798553776128, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (107, NULL, 1290849978032238592, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (108, NULL, 1291259822512693248, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (109, NULL, 1292620505149145088, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (110, NULL, 1292620665505775616, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (111, NULL, 1292620843398791168, 50, 60000, 1200000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (112, NULL, 1292621027574874112, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (113, NULL, 1292621363161137152, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (114, NULL, 1292621494837116928, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (115, NULL, 1292621629260365824, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (116, NULL, 1292622526073864192, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (117, NULL, 1293470838745821184, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (118, NULL, 1293471661785706496, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (119, NULL, 1293472678392721408, 50, 60000, 30000);
INSERT INTO [appapigatewayqosoptions]([Id],[ItemId],[ReRouteId],[ExceptionsAllowedBeforeBreaking],[DurationOfBreak],[TimeoutValue]) VALUES (120, NULL, 1293472857510473728, 50, 60000, 30000);
SET IDENTITY_INSERT [appapigatewayqosoptions] OFF
-- ----------------------------
-- Records of appapigatewayratelimitoptions
-- ----------------------------
SET IDENTITY_INSERT [appapigatewayratelimitoptions] ON
INSERT INTO [appapigatewayratelimitoptions]([Id]
,[ItemId]
,[ClientIdHeader]
,[QuotaExceededMessage]
,[RateLimitCounterPrefix]
,[DisableRateLimitHeaders]
,[HttpStatusCode]) VALUES (1, 1260841964962947072, 'ClientId', '您的操作过快,请稍后再试!', 'ocelot', 1, 429);
SET IDENTITY_INSERT [appapigatewayratelimitoptions] OFF
-- ----------------------------
-- Records of appapigatewayratelimitrule
-- ----------------------------
SET IDENTITY_INSERT [appapigatewayratelimitrule] ON
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (3, 1261299170387169280, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (4, 1261585859064872960, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (5, 1261586605810368512, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (6, 1261587558609436672, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (7, 1261588213298348032, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (8, 1261588367619375104, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (9, 1261588628450557952, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (10, 1261588881564221440, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (11, 1261588983053795328, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (12, 1261589139039961088, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (13, 1261589197483393024, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (14, 1261589278857084928, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (15, 1261589420356124672, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (16, 1261589960393736192, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (17, 1261606600242085888, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (18, 1261606689601732608, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (19, 1261681880965038080, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (20, 1261682144920977408, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (21, 1262220447629058048, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (22, 1262230734939758592, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (23, 1262296916350869504, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (24, 1262632376348594176, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (25, 1262632791869902848, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (26, 1262632904575045632, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (27, 1262632976616411136, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (28, 1262660336921235456, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (29, 1262660528277966848, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (30, 1262660706875625472, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (31, 1262660966393991168, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (32, 1262661109474283520, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (33, 1262663888804663296, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (34, 1262664024096133120, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (35, 1262664186252120064, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (36, 1262664357044178944, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (37, 1262664632928718848, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (38, 1262664751409418240, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (39, 1262664871274237952, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (40, 1262665026111164416, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (41, 1262665159905267712, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (42, 1262665329829105664, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (43, 1262665456471920640, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (44, 1262665628165754880, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (45, 1262666172682883072, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (47, 1262723402331885568, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (48, 1262935771746734080, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (49, 1262935906522304512, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (50, 1262936009924481024, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (52, 1263074419073593344, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (53, 1263075249394790400, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (54, 1263075593499684864, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (56, 1263101898440146944, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (57, 1263303878648569856, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (58, 1263304204797648896, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (59, 1263304872891555840, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (60, 1263305106250047488, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (61, 1263305244594970624, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (62, 1263305430536855552, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (63, 1263639172959174656, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (64, 1264799968944640000, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (65, 1264800070161584128, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (66, 1267360794414161920, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (67, 1267383367629807616, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (68, 1267817055527632896, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (69, 1267817221286526976, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (70, 1268893687085518848, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (91, 1285579388652576768, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (92, 1285580096881778688, NULL, '', 1, '1m', 60, 200);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (93, 1285582774663864320, NULL, '', 1, '1m', 60, 200);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (94, 1288657613998579712, NULL, '', 1, '1m', 60, 200);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (95, 1288657941770854400, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (96, 1288658134067109888, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (97, 1288658305156964352, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (98, 1288658491216289792, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (99, 1288658638302142464, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (100, 1288658791784308736, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (101, 1290849478956199936, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (102, 1290849628051124224, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (103, 1290849798553776128, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (104, 1290849978032238592, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (105, 1291259822512693248, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (106, 1292620505149145088, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (107, 1292620665505775616, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (108, 1292620843398791168, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (109, 1292621027574874112, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (110, 1292621363161137152, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (111, 1292621494837116928, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (112, 1292621629260365824, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (113, 1292622526073864192, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (114, 1293470838745821184, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (115, 1293471661785706496, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (116, 1293472678392721408, NULL, '', 0, NULL, NULL, NULL);
INSERT INTO [appapigatewayratelimitrule]([Id],[ReRouteId],[DynamicReRouteId],[ClientWhitelist],[EnableRateLimiting],[Period],[PeriodTimespan],[Limit]) VALUES (117, 1293472857510473728, NULL, '', 0, NULL, NULL, NULL);
SET IDENTITY_INSERT [appapigatewayratelimitrule] OFF
-- ----------------------------
-- Records of appapigatewayreroute
-- ----------------------------
SET IDENTITY_INSERT [appapigatewayreroute] ON
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (4, '{}', 'e4e1ea5c65ed4ab3baa912593372b51e', 1261299170387169280, '【平台服务】-权限管理', '/api/permission-management/permissions', '', NULL, '/api/abp/permissions', 'GET,PUT,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30010,', '', NULL, NULL, NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (5, '{}', 'd56f8c4547ec46219f5e7d2ec59e8bb3', 1261585859064872960, '【身份认证服务】-客户端管理', '/api/IdentityServer/Clients', '', NULL, '/api/IdentityServer/Clients', 'POST,GET,PUT,', '', '', 'X-Forwarded-For:{RemoteIpAddress},', '', '', '', NULL, 1, '', NULL, 'HTTP', '127.0.0.1:30010,', '', NULL, NULL, NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (6, '{}', '4d7c360bc40342c1b1cf16181e4ac2bb', 1261586605810368512, '【身份认证服务】-查询客户端', '/api/IdentityServer/Clients/{Id}', '', NULL, '/api/IdentityServer/Clients/{Id}', 'GET,DELETE,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30010,', '', NULL, NULL, NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (7, '{}', 'c222dcff22284b3e9ce9c424853705cd', 1261587558609436672, '【服务网关管理】-路由组管理', '/api/ApiGateway/RouteGroups', '', '', '/api/ApiGateway/RouteGroups', 'GET,POST,PUT,DELETE,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, '', NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (8, '{}', '4828b753ef5a45b1a8c7903b7977006f', 1261588213298348032, '【服务网关管理】-查询单个路由组', '/api/ApiGateway/RouteGroups/By-AppId/{AppId}', '', '', '/api/ApiGateway/RouteGroups/By-AppId/{AppId}', 'GET,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, '', NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (9, '{}', '7813111dea414ea6a48c498726c82e06', 1261588367619375104, '【服务网关管理】-查询所有有效路由组', '/api/ApiGateway/RouteGroups/Actived', '', '', '/api/ApiGateway/RouteGroups/Actived', 'GET,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, '', NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (10, '{}', 'a91c7f67e7cd4d9ca61b7d657213eaaf', 1261588628450557952, '【服务网关管理】-基础配置', '/api/ApiGateway/Globals', '', '', '/api/ApiGateway/Globals', 'GET,POST,PUT,DELETE,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, '', NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (11, '{}', 'fc3401e7942f4e63870fdd512372bf7d', 1261588881564221440, '【服务网关管理】-查询单个基础配置', '/api/ApiGateway/Globals/By-AppId/{AppId}', '', '', '/api/ApiGateway/Globals/By-AppId/{AppId}', 'GET,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, '', NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (12, '{}', '1298ef932a4845c7856ab0344e15daa9', 1261588983053795328, '【服务网关管理】-路由配置', '/api/ApiGateway/Routes', '', '', '/api/ApiGateway/Routes', 'GET,POST,PUT,DELETE,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, '', NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (13, '{}', 'd857a7a270cc44b38dfbd3d9dc7e62e6', 1261589139039961088, '【服务网关管理】-通过标识查询路由', '/api/ApiGateway/Routes/By-RouteId/{RouteId}', '', '', '/api/ApiGateway/Routes/By-RouteId/{RouteId}', 'GET,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, '', NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (14, '{}', 'aecd3c83218e490e8a48214dacacc88c', 1261589197483393024, '【服务网关管理】-通过名称查询路由', '/api/ApiGateway/Routes/By-RouteName/{RouteName}', '', '', '/api/ApiGateway/Routes/By-RouteName/{RouteName}', 'GET,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, '', NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (15, '{}', '73b62418ba424fa590113b58edf23e49', 1261589278857084928, '【服务网关管理】-通过应用标识查询路由', '/api/ApiGateway/Routes/By-AppId/{AppId}', '', '', '/api/ApiGateway/Routes/By-AppId/{AppId}', 'GET,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, '', NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (16, '{}', 'd096d74fb1d34619ba391dbd19a010ef', 1261589420356124672, '【服务网关管理】-清空应用标识下所有路由', '/api/ApiGateway/Routes/Clear', '', '', '/api/ApiGateway/Routes/Clear', 'DELETE,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, '', NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (17, '{}', '07fb9bc9e4604a24895dd60015856bc7', 1261589960393736192, '【服务网关管理】-通过应用标识查询动态路由', '/api/ApiGateway/DynamicRoutes/By-AppId/{AppId}', '', NULL, '/api/ApiGateway/DynamicRoutes/By-AppId/{AppId}', 'GET,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, NULL, NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (18, '{}', 'e659ebbf61534a978335cfeabdc0b375', 1261606600242085888, '【服务网关管理】-通过应用标识查询聚合路由', '/api/ApiGateway/Aggregates/by-AppId/{AppId}', '', NULL, '/api/ApiGateway/Aggregates/by-AppId/{AppId}', 'GET,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, NULL, NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (19, '{}', 'dd47edd7b03c42bc8666f4bded7cb991', 1261606689601732608, '【服务网关管理】-聚合路由', '/api/ApiGateway/Aggregates', '', NULL, '/api/ApiGateway/Aggregates', 'GET,POST,PUT,DELETE,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30001,', '', NULL, NULL, NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (20, '{}', 'e9b65f34b85e4a52829204d1f687ec21', 1261681880965038080, '【任务管理】-任务列表', '/Task/Schedule/all', '', NULL, '/Task/Schedule/all', 'GET,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '10.21.15.14:40060,', '', NULL, NULL, NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (21, '{}', '6b9a3d81ed454ac0af2e3ccb4be7bd17', 1261682144920977408, '【任务管理】-任务日志', '/Task/Schedule/logs', '', NULL, '/Task/Schedule/logs', 'GET,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '10.21.15.14:40060,', '', NULL, NULL, NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (22, '{}', '5be66f8be176412a8e75aadd109b544a', 1262220447629058048, '【身份认证服务】-客户端密钥', '/api/IdentityServer/Clients/Secrets', '', NULL, '/api/IdentityServer/Clients/Secrets', 'PUT,POST,DELETE,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30010,', '', NULL, NULL, NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (23, '{}', '1cb56a15863f464e9b79db0d18acf4ba', 1262230734939758592, '【身份认证服务】-客户端声明', '/api/IdentityServer/Clients/Claims', '', NULL, '/api/IdentityServer/Clients/Claims', 'PUT,POST,DELETE,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30010,', '', NULL, NULL, NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (25, '{}', 'b6009df9b18c44b3aa2b77f27b0c2abb', 1262296916350869504, '【身份认证服务】-客户端属性', '/api/IdentityServer/Clients/Properties', '', NULL, '/api/IdentityServer/Clients/Properties', 'PUT,POST,DELETE,', '', '', '', '', '', '', NULL, 1, NULL, NULL, 'HTTP', '127.0.0.1:30010,', '', NULL, NULL, NULL, 30000, 1, NULL, 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (26, '{}', '401a7a8e8a2f41c599b1b87b55249a32', 1262632376348594176, '【身份认证服务】-Api资源管理', '/api/IdentityServer/ApiResources', '', '', '/api/IdentityServer/ApiResources', 'GET,POST,PUT,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (27, '{}', 'c662a4c29e654f9da6eb73ee456b533a', 1262632791869902848, '【身份认证服务】-单个Api资源', '/api/IdentityServer/ApiResources/{Id}', '', '', '/api/IdentityServer/ApiResources/{Id}', 'GET,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (28, '{}', 'a0c2bdfdd0de4832b63d6dc3696c9c26', 1262632904575045632, '【身份认证服务】-Api资源密钥', '/api/IdentityServer/ApiResources/Secrets', '', '', '/api/IdentityServer/ApiResources/Secrets', 'DELETE,POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (29, '{}', 'fb0e7ca974f243ce9f4034b39bdda326', 1262632976616411136, '【身份认证服务】-Api资源作用域', '/api/IdentityServer/ApiResources/Scopes', '', '', '/api/IdentityServer/ApiResources/Scopes', 'DELETE,POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (30, '{}', '0f9875697b74420c9dc2eaf77099b210', 1262660336921235456, '【身份认证服务】-用户登录', '/api/account/login', '', '', '/api/account/login', 'POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (31, '{}', 'a890c6ecc6a64c9fa313a0f6b5406e1c', 1262660528277966848, '【身份认证服务】-用户登出', '/api/account/logout', '', '', '/api/account/logout', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (32, '{}', '88de580b6beb4d9d9d4367840ba1fcea', 1262660706875625472, '【身份认证服务】-检查密码', '/api/account/checkPassword', '', '', '/api/account/checkPassword', 'POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (33, '{}', '78f3c1adc7a54696af37a419eda47c62', 1262660966393991168, '【身份认证服务】-个人信息页', '/api/identity/my-profile', '', '', '/api/identity/my-profile', 'GET,PUT,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (34, '{}', '95b23aa5cebb40598a78c0761cfd0b26', 1262661109474283520, '【身份认证服务】-修改密码', '/api/identity/my-profile/change-password', '', '', '/api/identity/my-profile/change-password', 'POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (35, '{}', '4828f7c2aff8485189f37aba5de62d60', 1262663888804663296, '【身份认证管理】-角色管理', '/api/identity/roles', '', '', '/api/identity/roles', 'GET,POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (36, '{}', '0fddcd3b50a24c6795ec9034fdb44778', 1262664024096133120, '【身份认证服务】-角色列表', '/api/identity/roles/all', '', '', '/api/identity/roles/all', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (37, '{}', '191e555219e845069dfd93793263a840', 1262664186252120064, '【身份认证服务】-单个角色', '/api/identity/roles/{id}', '', '', '/api/identity/roles/{id}', 'GET,PUT,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (38, '{}', 'c316858e82f74e6ca6e923d6b3a3fa76', 1262664357044178944, '【身份认证服务】-用户注册', '/api/account/register', '', '', '/api/account/register', 'POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (39, '{}', 'db53b6f957914a10a6a97ba306b1f6ef', 1262664632928718848, '【身份认证服务】-单个用户', '/api/identity/users/{id}', '', '', '/api/identity/users/{id}', 'GET,PUT,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (40, '{}', '1833434b8ce34f8ab791e7e950f4c61f', 1262664751409418240, '【身份认证服务】-用户管理', '/api/identity/users', '', '', '/api/identity/users', 'GET,POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (41, '{}', 'b3c963a1612144918bffaf272697498c', 1262664871274237952, '【身份认证服务】-用户角色', '/api/identity/users/{id}/roles', '', '', '/api/identity/users/{id}/roles', 'GET,POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (42, '{}', '33dd757b79cb4f52994af13bfb4f6783', 1262665026111164416, '【身份认证服务】-通过用户名查询用户', '/api/identity/users/by-username/{userName}', '', '', '/api/identity/users/by-username/{userName}', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (43, '{}', 'e46fd6cb3a104da3aadfe0149fe4de68', 1262665159905267712, '【身份认证服务】-通过邮件查询用户', '/api/identity/users/by-email/{email}', '', '', '/api/identity/users/by-email/{email}', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (44, '{}', '8c8ec5ad6aaa4145981ee7ac876c36c9', 1262665329829105664, '【身份认证服务】-通过标识查询用户', '/api/identity/users/lookup/{id}', '', '', '/api/identity/users/lookup/{id}', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (45, '{}', 'f5c0c8c02c0846fdbe5015cd86f3d81b', 1262665456471920640, '【身份认证服务】-通过名称查询用户', '/api/identity/users/lookup/by-username/{userName}', '', '', '/api/identity/users/lookup/by-username/{userName}', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (46, '{}', '4de0c9e0437f40ce81628de956af9c5e', 1262665628165754880, '【身份认证服务】-通过名称查询租户', '/api/abp/multi-tenancy/tenants/by-name/{name}', '', '', '/api/abp/multi-tenancy/tenants/by-name/{name}', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (47, '{}', 'fa60a7253b2f4c80b9afad4e82ba6ba8', 1262666172682883072, '【身份认证服务】-通过标识查询租户', '/api/abp/multi-tenancy/tenants/by-id/{id}', '', '', '/api/abp/multi-tenancy/tenants/by-id/{id}', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (49, '{}', '4114a097b9e04a9e90458edf02ef41c7', 1262723402331885568, '【身份认证服务】-克隆客户端', '/api/IdentityServer/Clients/Clone', '', '', '/api/IdentityServer/Clients/Clone', 'POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (50, '{}', '2a9cc98d3ed0462d98c4bf0e946f410d', 1262935771746734080, '【身份认证服务】-身份资源管理', '/api/IdentityServer/IdentityResources', '', '', '/api/IdentityServer/IdentityResources', 'GET,POST,PUT,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (51, '{}', '4d36b0ea5b92473ea5de3e91ff155830', 1262935906522304512, '【身份认证服务】-查询身份资源', '/api/IdentityServer/IdentityResources/{Id}', '', '', '/api/IdentityServer/IdentityResources/{Id}', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (52, '{}', '387df08693e54e91ac055a2324d4c10e', 1262936009924481024, '【身份认证服务】-身份资源属性', '/api/IdentityServer/IdentityResources/Properties', '', '', '/api/IdentityServer/IdentityResources/Properties', 'POST,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (54, '{}', '7b847d8434bc4d1db07fa8961d90c14a', 1263074419073593344, '【服务网关管理】- 接口代理', '/api/abp/api-definition', '', '', '/api/abp/apigateway/api-definition', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30001,', '', '', 'apigateway-api-definition', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (55, '{}', 'ca2cedfa620045a9adef0be2f958c4bc', 1263075249394790400, '【服务网关管理】-查询聚合路由', '/api/ApiGateway/Aggregates/{RouteId}', '', '', '/api/ApiGateway/Aggregates/{RouteId}', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30001,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (57, '{}', '98fbc99fc8644946ac0a72cc3dc5fd1f', 1263075593499684864, '【服务网关管理】-聚合路由配置', '/api/ApiGateway/Aggregates/RouteConfig', '', '', '/api/ApiGateway/Aggregates/RouteConfig', 'POST,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30001,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (59, '{}', 'c692b30c72d4424eb4740ac49f4e9373', 1263101898440146944, '【服务网关管理】-框架配置', '/api/abp/application-configuration', '', '', '/api/abp/apigateway/application-configuration', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30001,', '', '', 'apigateway-configuration', 0, 120000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (60, '{}', '8409117162504f71aa66982f05c38a80', 1263303878648569856, '【平台服务】- 接口代理', '/api/abp/api-definition', '', '', '/api/abp/platform/api-definition', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30025,', '', '', 'platform-api-definition', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (61, '{}', '9f520820071b4e14bc94ab57989cea1f', 1263304204797648896, '【平台服务】-框架配置', '/api/abp/application-configuration', '', '', '/api/abp/platform/application-configuration', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30025,', '', '', 'platform-configuration', 0, 120000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (62, '{}', '9810656b884947e3897e776b47208352', 1263304872891555840, '【平台服务】-租户管理', '/api/multi-tenancy/tenants', '', '', '/api/multi-tenancy/tenants', 'GET,POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (63, '{}', '12254ca25e15420faa694f62148dd694', 1263305106250047488, '【平台服务】-特定租户管理', '/api/multi-tenancy/tenants/{id}', '', '', '/api/multi-tenancy/tenants/{id}', 'GET,PUT,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (64, '{}', '27761205c6344bfebbafbc077781ab76', 1263305244594970624, '【平台服务】-租户连接字符串', '/api/multi-tenancy/tenants/{id}/connection-string', '', '', '/api/multi-tenancy/tenants/{id}/concatenation', 'GET,PUT,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 2, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (65, '{}', 'af470c53a25340fd9248fd0309ad41ef', 1263305430536855552, '【平台服务】-特定租户连接字符串', '/api/multi-tenancy/tenants/{id}/connection-string/{name}', '', '', '/api/multi-tenancy/tenants/{id}/concatenation/{name}', 'GET,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 1, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (66, '{}', '50b18f8d4ddb4540b142877a7852f20d', 1263639172959174656, '【平台服务】- 公共配置', '/api/settings/by-global', '', '', '/api/settings/by-global', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (67, '{}', '858056ce80b8420084b60d62ef4aa25c', 1264799968944640000, '【平台服务】-验证手机号', '/api/account/phone/verify', '', '', '/api/account/phone/verify', 'POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (68, '{}', 'd460979de403436e840de179767ed770', 1264800070161584128, '【平台服务】-手机号注册', '/api/account/phone/register', '', '', '/api/account/phone/register', 'POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (69, '{}', '723c9b111f9f4a1aa804118cdde193d3', 1267360794414161920, '【消息服务】- 通知', '/signalr-hubs/notifications/{everything}', '', '', '/signalr-hubs/notifications/{everything}', 'POST,GET,OPTIONS,PUT,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'ws', '127.0.0.1:30020,', '', '', '', 1, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (70, '{}', 'f3aa2b42dd9f468aa5aae4ef64754427', 1267383367629807616, '【消息服务】- 通知0', '/signalr-hubs/notifications', '', '', '/signalr-hubs/notifications', 'GET,POST,PUT,DELETE,OPTIONS,', '', '', '', '', '', '', '', 1, '', '', 'ws', '127.0.0.1:30020,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (71, '{}', '99dc8259c50044008c8aede7442ddde3', 1267817055527632896, '【消息服务】- 聊天', '/signalr-hubs/message', '', '', '/signalr-hubs/message', 'GET,POST,PUT,DELETE,OPTIONS,', '', '', '', '', '', '', '', 1, '', '', 'ws', '127.0.0.1:30020,', '', '', '', 1, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (72, '{}', '4ec40b72d469474ba10ae02e8d3298bb', 1267817221286526976, '【消息服务】- 聊天1', '/signalr-hubs/message/{everything}', '', '', '/signalr-hubs/message/{everything}', 'GET,POST,PUT,DELETE,OPTIONS,', '', '', '', '', '', '', '', 1, '', '', 'ws', '127.0.0.1:30020,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (73, '{}', 'cfb5f09a12bf495fbcaf2fa5d9123a40', 1268893687085518848, '【身份认证服务-重置密码', '/api/account/phone/reset-password', '', '', '/api/account/phone/reset-password', 'PUT,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 1, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (97, '{}', 'f9e4d8f541b34ea7a22fa159b8cbcf6a', 1285579388652576768, '【SingalR】- 本地打印服务', '/document/print-single/{everything}', '', '', '/signalr-hubs/document/print-single/{everything}', 'GET,POST,PUT,DELETE,OPTIONS,', '', '', '', '', '', '', '', 1, '', '', 'ws', '127.0.0.1:36390,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (99, '{}', '4105470ee52345448e75b64983cd50cd', 1285580096881778688, '【SingalR】- 本地打印多个文档', '/document/print-multiple/{everything}', '', '', '/signalr-hubs/document/print-multiple/{everything}', 'GET,PUT,DELETE,OPTIONS,POST,', '', '', '', '', '', '', '', 1, '', '', 'ws', '127.0.0.1:36390,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (100, '{}', 'e4dfea0fab254653b3b4424f9cdfec9f', 1285582774663864320, '【SingalR】- 本地打印多个文档-0', '/document/print-multiple', '', '', '/signalr-hubs/document/print-multiple', 'GET,PUT,POST,DELETE,OPTIONS,', '', '', '', '', '', '', '', 1, '', '', 'ws', '127.0.0.1:36390,', '', '', '', 1, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (101, '{}', '997a4c27a433458aafed9b8aa252d957', 1288657613998579712, '【身份认证服务】- 组织机构列表', '/api/identity/organization-units', '', '', '/api/identity/organization-units', 'GET,POST,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (102, '{}', 'a2c6acc9882a425ab26bd3ad5a9c17c6', 1288657941770854400, '【身份认证服务】- 组织机构管理', '/api/identity/organization-units/{id}', '', '', '/api/identity/organization-units/{id}', 'GET,PUT,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 1, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (103, '{}', '390acfb0e16943c6b61e731d47c282e9', 1288658134067109888, '【身份认证服务】- 组织机构移动', '/api/identity/organization-units/{id}/move', '', '', '/api/identity/organization-units/{id}/move', 'PUT,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (104, '{}', '3515e75becf9447492ad60466b27c397', 1288658305156964352, '【身份认证服务】- 查询组织机构子级', '/api/identity/organization-units/find-children', '', '', '/api/identity/organization-units/find-children', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (105, '{}', 'aab0a24d930f4f9687497e5ccaac2a31', 1288658491216289792, '【身份认证服务】- 查询组织机构最后一个子节点', '/api/identity/organization-units/last-children', '', '', '/api/identity/organization-units/last-children', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (106, '{}', 'edf67e297c6d494baf3ea66465418faf', 1288658638302142464, '【身份认证服务】- 组织机构角色管理', '/api/identity/organization-units/management-roles', '', '', '/api/identity/organization-units/management-roles', 'GET,POST,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (107, '{}', '21bcb13e71c648a98861ce9b6fb3e7b0', 1288658791784308736, '【身份认证服务】- 组织机构用户管理', '/api/identity/organization-units/management-users', '', '', '/api/identity/organization-units/management-users', 'GET,POST,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (108, '{}', '417a4518e0da4db0a2704511d6a8c343', 1290849478956199936, '【平台服务】- 当前租户配置', '/api/settings/by-tenant', '', '', '/api/settings/by-tenant', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (109, '{}', 'e937ff4ea11e4f0ca39d079c7a83b960', 1290849628051124224, '【平台服务】- 用户配置', '/api/settings/by-user', '', '', '/api/settings/by-user', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (110, '{}', '22212bc751b743678d9c2f095d05ce25', 1290849798553776128, '【平台服务】- 当前用户配置', '/api/settings/by-current-user', '', '', '/api/settings/by-current-user', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (111, '{}', '8dfa430d752a4b4a869ad401b3802a62', 1290849978032238592, '【平台服务】- 配置管理', '/api/settings', '', '', '/api/settings', 'GET,PUT,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (112, '{}', '9844fed6507844f2ac64bd08649bd3a6', 1291259822512693248, '【身份认证服务】- 查询组织机构根节点', '/api/identity/organization-units/root-node', '', '', '/api/identity/organization-units/root-node', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (113, '{}', '24d8794cf8f943b4ac45d2bcccf7c128', 1292620505149145088, '【平台服务】- 文件系统', '/api/file-management/file-system', '', '', '/api/file-management/file-system', 'GET,PUT,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30025,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (114, '{}', '0acf6762d3af43efb655107e0039f5fc', 1292620665505775616, '【平台服务】- 文件系统 - 目录管理', '/api/file-management/file-system/folders', '', '', '/api/file-management/file-system/folders', 'POST,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30025,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (115, '{}', '8b4363f70865419089b5f62ba35382df', 1292620843398791168, '【平台服务】- 文件系统 - 文件管理', '/api/file-management/file-system/files', '', '', '/api/file-management/file-system/files', 'GET,POST,DELETE,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30025,', '', '', '', 0, 1200000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (116, '{}', '7eb315567bbc470bbbfd26923c5d0aba', 1292621027574874112, '【平台服务】- 文件系统 - 复制目录', '/api/file-management/file-system/folders/copy', '', '', '/api/file-management/file-system/folders/copy', 'PUT,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30025,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (117, '{}', 'af5853680cff454fa66ff6022f18da23', 1292621363161137152, '【平台服务】- 文件系统 - 移动目录', '/api/file-management/file-system/folders/move', '', '', '/api/file-management/file-system/folders/move', 'PUT,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30025,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (118, '{}', '6daa6d8c8adb466899988fd8181c29a8', 1292621494837116928, '【平台服务】- 文件系统 - 复制文件', '/api/file-management/file-system/files/copy', '', '', '/api/file-management/file-system/files/copy', 'PUT,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30025,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (119, '{}', '9560caaa3bd9424984c44724aa54bfe9', 1292621629260365824, '【平台服务】- 文件系统 - 移动文件', '/api/file-management/file-system/files/move', '', '', '/api/file-management/file-system/files/move', 'PUT,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30025,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (120, '{}', 'fc2aaa6035484201b9014912930fb7cb', 1292622526073864192, '【平台服务】- 文件系统 - 详情页', '/api/file-management/file-system/profile', '', '', '/api/file-management/file-system/profile', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30025,', '', '', '', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (121, '{}', 'c6c7b027000942dda8ba0d2e2d8cf705', 1293470838745821184, '【后台管理】- 框架配置', '/api/abp/application-configuration', '', '', '/api/abp/backend-admin/application-configuration', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', 'backend-admin-configuration', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (122, '{}', 'becd4342079d4399abda5b5ba3b46fdc', 1293471661785706496, '【消息服务】- 框架配置', '/api/abp/application-configuration', '', '', '/api/abp/messages/application-configuration', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30020,', '', '', 'messages-configuration', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (123, '{}', 'c828140cee3043c18ffc274f6461f0f2', 1293472678392721408, '【后台管理】- 接口代理', '/api/abp/api-definition', '', '', '/api/abp/backend-admin/api-definition', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30010,', '', '', 'backend-admin-api-definition', 0, 30000, 1, '', 'TEST-APP');
INSERT INTO [appapigatewayreroute]([Id],[ExtraProperties],[ConcurrencyStamp],[ReRouteId],[ReRouteName],[DownstreamPathTemplate],[ChangeDownstreamPathTemplate],[DownstreamHttpMethod],[UpstreamPathTemplate],[UpstreamHttpMethod],[AddHeadersToRequest],[UpstreamHeaderTransform],[DownstreamHeaderTransform],[AddClaimsToRequest],[RouteClaimsRequirement],[AddQueriesToRequest],[RequestIdKey],[ReRouteIsCaseSensitive],[ServiceName],[ServiceNamespace],[DownstreamScheme],[DownstreamHostAndPorts],[DelegatingHandlers],[UpstreamHost],[Key],[Priority],[Timeout],[DangerousAcceptAnyServerCertificateValidator],[DownstreamHttpVersion],[AppId]) VALUES (124, '{}', 'e683cff8066d4c2899a17d0f618f1a0b', 1293472857510473728, '【消息服务】- 接口代理', '/api/abp/api-definition', '', '', '/api/abp/messages/api-definition', 'GET,', '', '', '', '', '', '', '', 1, '', '', 'HTTP', '127.0.0.1:30020,', '', '', 'messages-api-definition', 0, 30000, 1, '', 'TEST-APP');
SET IDENTITY_INSERT [appapigatewayreroute] OFF
-- ----------------------------
-- Records of appapigatewayroutegroup
-- ----------------------------
SET IDENTITY_INSERT [appapigatewayroutegroup] ON
INSERT INTO [appapigatewayroutegroup]([Id]
,[ExtraProperties]
,[ConcurrencyStamp]
,[CreationTime]
,[CreatorId]
,[LastModificationTime]
,[LastModifierId]
,[IsDeleted]
,[DeleterId]
,[DeletionTime]
,[Name]
,[AppId]
,[AppName]
,[AppIpAddress]
,[Description]
,[IsActive]) VALUES ('08d7f735-a83b-49ab-8cee-5d602502bea8', '{}', '83cac848676f4b658d5c9f7d802a497a', '2020-05-13 20:03:32.524271', NULL, '2020-08-05 15:43:28.205288', 'bf289dbb-838e-a89b-c622-39f51dcc4f43', 0, NULL, NULL, 'abp后台管理', 'TEST-APP', 'abp后台管理', '127.0.0.1', 'abp后台管理项目网关', 1);
SET IDENTITY_INSERT [appapigatewayroutegroup] OFF
-- ----------------------------
-- Records of appapigatewaysecurityoptions
-- ----------------------------
SET IDENTITY_INSERT [appapigatewaysecurityoptions] ON
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (3, 1261299170387169280, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (4, 1261585859064872960, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (5, 1261586605810368512, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (6, 1261587558609436672, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (7, 1261588213298348032, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (8, 1261588367619375104, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (9, 1261588628450557952, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (10, 1261588881564221440, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (11, 1261588983053795328, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (12, 1261589139039961088, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (13, 1261589197483393024, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (14, 1261589278857084928, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (15, 1261589420356124672, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (16, 1261589960393736192, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (17, 1261606600242085888, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (18, 1261606689601732608, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (19, 1261681880965038080, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (20, 1261682144920977408, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (21, 1262220447629058048, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (22, 1262230734939758592, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (23, 1262296916350869504, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (24, 1262632376348594176, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (25, 1262632791869902848, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (26, 1262632904575045632, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (27, 1262632976616411136, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (28, 1262660336921235456, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (29, 1262660528277966848, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (30, 1262660706875625472, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (31, 1262660966393991168, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (32, 1262661109474283520, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (33, 1262663888804663296, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (34, 1262664024096133120, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (35, 1262664186252120064, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (36, 1262664357044178944, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (37, 1262664632928718848, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (38, 1262664751409418240, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (39, 1262664871274237952, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (40, 1262665026111164416, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (41, 1262665159905267712, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (42, 1262665329829105664, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (43, 1262665456471920640, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (44, 1262665628165754880, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (45, 1262666172682883072, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (47, 1262723402331885568, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (48, 1262935771746734080, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (49, 1262935906522304512, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (50, 1262936009924481024, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (52, 1263074419073593344, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (53, 1263075249394790400, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (54, 1263075593499684864, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (56, 1263101898440146944, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (57, 1263303878648569856, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (58, 1263304204797648896, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (59, 1263304872891555840, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (60, 1263305106250047488, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (61, 1263305244594970624, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (62, 1263305430536855552, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (63, 1263639172959174656, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (64, 1264799968944640000, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (65, 1264800070161584128, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (66, 1267360794414161920, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (67, 1267383367629807616, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (68, 1267817055527632896, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (69, 1267817221286526976, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (70, 1268893687085518848, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (91, 1285579388652576768, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (92, 1285580096881778688, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (93, 1285582774663864320, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (94, 1288657613998579712, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (95, 1288657941770854400, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (96, 1288658134067109888, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (97, 1288658305156964352, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (98, 1288658491216289792, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (99, 1288658638302142464, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (100, 1288658791784308736, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (101, 1290849478956199936, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (102, 1290849628051124224, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (103, 1290849798553776128, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (104, 1290849978032238592, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (105, 1291259822512693248, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (106, 1292620505149145088, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (107, 1292620665505775616, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (108, 1292620843398791168, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (109, 1292621027574874112, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (110, 1292621363161137152, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (111, 1292621494837116928, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (112, 1292621629260365824, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (113, 1292622526073864192, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (114, 1293470838745821184, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (115, 1293471661785706496, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (116, 1293472678392721408, '', '');
INSERT INTO [appapigatewaysecurityoptions]([Id],[ReRouteId],[IPAllowedList],[IPBlockedList]) VALUES (117, 1293472857510473728, '', '');
SET IDENTITY_INSERT [appapigatewaysecurityoptions] OFF

22
aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Application.Contracts/LINGYUN/Abp/IdentityServer/Grants/Dto/PersistedGrantDto.cs

@ -0,0 +1,22 @@
using System;
using Volo.Abp.Application.Dtos;
namespace LINGYUN.Abp.IdentityServer.Grants
{
public class PersistedGrantDto : ExtensibleEntityDto<Guid>
{
public string Key { get; set; }
public string Type { get; set; }
public string SubjectId { get; set; }
public string ClientId { get; set; }
public DateTime CreationTime { get; set; }
public DateTime? Expiration { get; set; }
public string Data { get; set; }
}
}

10
aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Application.Contracts/LINGYUN/Abp/IdentityServer/Grants/Dto/PersistedGrantGetPagedDto.cs

@ -0,0 +1,10 @@
using Volo.Abp.Application.Dtos;
namespace LINGYUN.Abp.IdentityServer.Grants
{
public class PersistedGrantGetPagedDto : PagedAndSortedResultRequestDto
{
public string Filter { get; set; }
public string SubjectId { get; set; }
}
}

5
aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Application/LINGYUN.Abp.IdentityServer.Application.csproj

@ -5,12 +5,9 @@
<RootNamespace /> <RootNamespace />
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<PackageReference Include="Volo.Abp.IdentityServer.Domain" Version="3.0.0" />
</ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\LINGYUN.Abp.IdentityServer.Application.Contracts\LINGYUN.Abp.IdentityServer.Application.Contracts.csproj" /> <ProjectReference Include="..\LINGYUN.Abp.IdentityServer.Application.Contracts\LINGYUN.Abp.IdentityServer.Application.Contracts.csproj" />
<ProjectReference Include="..\LINGYUN.Abp.IdentityServer.Domain\LINGYUN.Abp.IdentityServer.Domain.csproj" />
</ItemGroup> </ItemGroup>
</Project> </Project>

1
aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Application/LINGYUN/Abp/IdentityServer/AbpIdentityServerApplicationModule.cs

@ -1,5 +1,4 @@
using Volo.Abp.AutoMapper; using Volo.Abp.AutoMapper;
using Volo.Abp.IdentityServer;
using Volo.Abp.Modularity; using Volo.Abp.Modularity;
namespace LINGYUN.Abp.IdentityServer namespace LINGYUN.Abp.IdentityServer

26
aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Application/LINGYUN/Abp/IdentityServer/Grants/PersistedGrantAppService.cs

@ -0,0 +1,26 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using Volo.Abp.Application.Dtos;
using Volo.Abp.IdentityServer.Grants;
namespace LINGYUN.Abp.IdentityServer.Grants
{
public class PersistedGrantAppService : AbpIdentityServerAppServiceBase
{
protected IPersistentGrantRepository PersistentGrantRepository { get; }
public virtual async Task<PagedResultDto<PersistedGrantDto>> GetListAsync(PersistedGrantGetPagedDto input)
{
var persistenGrantCount = await PersistentGrantRepository.GetCountAsync(
input.SubjectId, input.Filter);
var persistenGrants = await PersistentGrantRepository.GetListAsync(
input.SubjectId, input.Filter, input.Sorting,
input.SkipCount, input.MaxResultCount);
return new PagedResultDto<PersistedGrantDto>(persistenGrantCount,
ObjectMapper.Map<List<PersistedGrant>, List<PersistedGrantDto>>(persistenGrants));
}
}
}

12
aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Domain/LINGYUN.Abp.IdentityServer.Domain.csproj

@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Volo.Abp.IdentityServer.Domain" Version="3.0.0" />
</ItemGroup>
</Project>

9
aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Domain/LINGYUN/Abp/IdentityServer/AbpIdentityServerDomainModule.cs

@ -0,0 +1,9 @@
using Volo.Abp.Modularity;
namespace LINGYUN.Abp.IdentityServer
{
[DependsOn(typeof(Volo.Abp.IdentityServer.AbpIdentityServerDomainModule))]
public class AbpIdentityServerDomainModule : AbpModule
{
}
}

24
aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.Domain/LINGYUN/Abp/IdentityServer/Grants/IPersistentGrantRepository.cs

@ -0,0 +1,24 @@
using JetBrains.Annotations;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Volo.Abp.IdentityServer.Grants;
namespace LINGYUN.Abp.IdentityServer.Grants
{
public interface IPersistentGrantRepository : Volo.Abp.IdentityServer.Grants.IPersistentGrantRepository
{
Task<long> GetCountAsync(
string subjectId = null,
string filter = null,
CancellationToken cancellation = default);
Task<List<PersistedGrant>> GetListAsync(
string subjectId = null,
string filter = null,
string sorting = nameof(PersistedGrant.CreationTime),
int skipCount = 1,
int maxResultCount = 10,
CancellationToken cancellation = default);
}
}

16
aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.EntityFrameworkCore/LINGYUN.Abp.IdentityServer.EntityFrameworkCore.csproj

@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Volo.Abp.IdentityServer.EntityFrameworkCore" Version="3.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LINGYUN.Abp.IdentityServer.Domain\LINGYUN.Abp.IdentityServer.Domain.csproj" />
</ItemGroup>
</Project>

10
aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.EntityFrameworkCore/LINGYUN/Abp/IdentityServer/EntityFrameworkCore/AbpIdentityServerEntityFrameworkCoreModule.cs

@ -0,0 +1,10 @@
using Volo.Abp.Modularity;
namespace LINGYUN.Abp.IdentityServer.EntityFrameworkCore
{
[DependsOn(typeof(LINGYUN.Abp.IdentityServer.AbpIdentityServerDomainModule))]
[DependsOn(typeof(Volo.Abp.IdentityServer.EntityFrameworkCore.AbpIdentityServerEntityFrameworkCoreModule))]
public class AbpIdentityServerEntityFrameworkCoreModule : AbpModule
{
}
}

48
aspnet-core/modules/identityServer/LINGYUN.Abp.IdentityServer.EntityFrameworkCore/LINGYUN/Abp/IdentityServer/Grants/EfCorePersistentGrantRepository.cs

@ -0,0 +1,48 @@
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Dynamic.Core;
using System.Threading;
using System.Threading.Tasks;
using Volo.Abp.DependencyInjection;
using Volo.Abp.EntityFrameworkCore;
using Volo.Abp.IdentityServer.EntityFrameworkCore;
using Volo.Abp.IdentityServer.Grants;
namespace LINGYUN.Abp.IdentityServer.Grants
{
[Dependency(ReplaceServices = true)]
[ExposeServices(
typeof(Volo.Abp.IdentityServer.Grants.IPersistentGrantRepository),
typeof(IPersistentGrantRepository),
typeof(PersistentGrantRepository))]
public class EfCorePersistentGrantRepository : PersistentGrantRepository, IPersistentGrantRepository
{
public EfCorePersistentGrantRepository(
IDbContextProvider<IIdentityServerDbContext> dbContextProvider)
: base(dbContextProvider)
{
}
public virtual async Task<long> GetCountAsync(string subjectId = null, string filter = null, CancellationToken cancellation = default)
{
return await DbSet
.WhereIf(!subjectId.IsNullOrWhiteSpace(), x => x.SubjectId.Equals(subjectId))
.WhereIf(!filter.IsNullOrWhiteSpace(), x =>
x.Type.Contains(filter) || x.ClientId.Contains(filter) || x.Key.Contains(filter))
.LongCountAsync(GetCancellationToken(cancellation));
}
public virtual async Task<List<PersistedGrant>> GetListAsync(string subjectId = null, string filter = null, string sorting = "CreationTime", int skipCount = 1, int maxResultCount = 10, CancellationToken cancellation = default)
{
return await DbSet
.WhereIf(!subjectId.IsNullOrWhiteSpace(), x => x.SubjectId.Equals(subjectId))
.WhereIf(!filter.IsNullOrWhiteSpace(), x =>
x.Type.Contains(filter) || x.ClientId.Contains(filter) || x.Key.Contains(filter))
.OrderBy(sorting ?? nameof(PersistedGrant.CreationTime))
.Page(skipCount, maxResultCount)
.ToListAsync(GetCancellationToken(cancellation));
}
}
}

5
aspnet-core/services/account/AuthServer.Host/Dockerfile

@ -3,8 +3,11 @@ LABEL maintainer="colin.in@foxmail.com"
WORKDIR /app WORKDIR /app
COPY . /app COPY . /app
COPY ../../../configuration/account/AuthServer.Host/appsettings.Development.json /app/appsettings.Development.json
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
EXPOSE 80/tcp EXPOSE 80/tcp
VOLUME [ "./app/Logs" ]
ENTRYPOINT ["dotnet", "AuthServer.Host.dll"] ENTRYPOINT ["dotnet", "AuthServer.Host.dll"]

13
aspnet-core/services/admin/LINGYUN.BackendAdminApp.Host/Dockerfile

@ -0,0 +1,13 @@
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS runtime
LABEL maintainer="colin.in@foxmail.com"
WORKDIR /app
COPY . /app
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
EXPOSE 80/tcp
VOLUME [ "./app/Logs" ]
ENTRYPOINT ["dotnet", "LINGYUN.BackendAdminApp.Host.dll"]

7
aspnet-core/services/apigateway/LINGYUN.ApiGateway.Host/Dockerfile

@ -1,12 +1,13 @@
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS runtime FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS runtime
MAINTAINER Colin LABEL maintainer="colin.in@foxmail.com"
WORKDIR /host WORKDIR /app
COPY . /host COPY . /app
ENV TZ=Asia/Shanghai ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
EXPOSE 80/tcp EXPOSE 80/tcp
VOLUME [ "./app/Logs" ]
ENTRYPOINT ["dotnet", "LINGYUN.ApiGateway.Host.dll"] ENTRYPOINT ["dotnet", "LINGYUN.ApiGateway.Host.dll"]

7
aspnet-core/services/apigateway/LINGYUN.ApiGateway.HttpApi.Host/Dockerfile

@ -1,12 +1,13 @@
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS runtime FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS runtime
MAINTAINER Colin LABEL maintainer="colin.in@foxmail.com"
WORKDIR /api WORKDIR /app
COPY . /api COPY . /app
ENV TZ=Asia/Shanghai ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
EXPOSE 80/tcp EXPOSE 80/tcp
VOLUME [ "./app/Logs" ]
ENTRYPOINT ["dotnet", "LINGYUN.ApiGateway.HttpApi.Host.dll"] ENTRYPOINT ["dotnet", "LINGYUN.ApiGateway.HttpApi.Host.dll"]

13
aspnet-core/services/messages/LINGYUN.Abp.MessageService.HttpApi.Host/Dockerfile

@ -0,0 +1,13 @@
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS runtime
LABEL maintainer="colin.in@foxmail.com"
WORKDIR /app
COPY . /app
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
EXPOSE 80/tcp
VOLUME [ "./app/Logs" ]
ENTRYPOINT ["dotnet", "LINGYUN.Abp.MessageService.HttpApi.Host.dll"]

13
aspnet-core/services/platform/LINGYUN.Platform.HttpApi.Host/Dockerfile

@ -0,0 +1,13 @@
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS runtime
LABEL maintainer="colin.in@foxmail.com"
WORKDIR /app
COPY . /app
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
EXPOSE 80/tcp
VOLUME [ "./app/Logs", "./app/file-blob-storing" ]
ENTRYPOINT ["dotnet", "LINGYUN.Platform.HttpApi.Host.dll"]

48
docker-compose.override.yml

@ -0,0 +1,48 @@
version: '3.4'
services:
admin-service:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=http://0.0.0.0:80
ports:
- "30010:80"
platform-service:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=http://0.0.0.0:80
ports:
- "30025:80"
messages-service:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=http://0.0.0.0:80
ports:
- "30020:80"
identity-server:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=http://0.0.0.0:80
ports:
- "44385:80"
apigateway-admin-service:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=http://0.0.0.0:80
ports:
- "30001:80"
apigateway-host-service:
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=http://0.0.0.0:80
ports:
- "30000:80"
abp-vue-admin-client:
ports:
- "40000:80"

65
docker-compose.yml

@ -0,0 +1,65 @@
version: '3.4'
services:
admin-service:
build:
context: ./aspnet-core/services/Publish/admin
volumes:
- /var/opt/abp/LogCenter/Admin:/app/Logs
restart: always
platform-service:
build:
context: ./aspnet-core/services/Publish/platform
volumes:
- /var/opt/abp/LogCenter/Platform:/app/Logs
- /var/opt/abp/Data/Platform:/app/file-blob-storing
restart: always
messages-service:
build:
context: ./aspnet-core/services/Publish/messages
volumes:
- /var/opt/abp/LogCenter/Messages:/app/Logs
restart: always
identity-server:
build:
context: ./aspnet-core/services/Publish/identityserver
volumes:
- /var/opt/abp/LogCenter/IdentityServer:/app/Logs
depends_on:
- admin-service
restart: always
apigateway-admin-service:
build:
context: ./aspnet-core/services/Publish/apigateway-admin
volumes:
- /var/opt/abp/LogCenter/ApiGateway-Admin:/app/Logs
depends_on:
- admin-service
restart: always
apigateway-host-service:
build:
context: ./aspnet-core/services/Publish/apigateway-host
volumes:
- /var/opt/abp/LogCenter/ApiGateway-Host:/app/Logs
depends_on:
- apigateway-admin-service
restart: always
abp-vue-admin-client:
build:
context: ./vueJs
volumes:
- /var/opt/abp/Data/client/nginx:/etc/nginx/nginx.conf
- /var/opt/abp/Data/client/nginx/conf.d:/etc/nginx/conf.d/default.conf
restart: always
volumes:
dbdata:
networks:
linyun-abp:

12
vueJs/Dockerfile

@ -0,0 +1,12 @@
FROM nginx:latest
LABEL maintainer="colin.in@foxmail.com"
# 将vue构建后的dist目录中的内容复制到docker容器中nginx默认配置的部署目录
COPY ./dist /usr/share/nginx/html
# 将docker容器中默认的配置替换为本地配置
COPY ./docker/nginx/nginx.conf /etc/nginx/nginx.conf
COPY ./docker/nginx/default.conf /etc/nginx/conf.d/default.conf
# 端口映射
EXPOSE 80

68
vueJs/docker/nginx/default.conf

@ -0,0 +1,68 @@
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
#location / {
# root /usr/share/nginx/html;
# index index.html index.htm;
#}
location / {
root /usr/share/nginx/html;
index index.html index.htm;
# 此处主要增加该配置,解决界面刷新报 404 的问题
# 参考博客: https://blog.csdn.net/qq_27985607/article/details/86608392
try_files $uri $uri/ /index.html =404;
}
location /connect/ {
proxy_pass http://10.21.15.28:44385/;
}
location /api/ {
proxy_pass http://10.21.15.28:30000/;
}
location /signalr-hubs/ {
proxy_pass http://10.21.15.28:30000/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}

38
vueJs/docker/nginx/nginx.conf

@ -0,0 +1,38 @@
user root;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
server_names_hash_bucket_size 512;
default_type application/octet-stream;
#abp租户头需要携带下划线
underscores_in_headers on;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on; # 激活 TCP_CORK socket 选择
tcp_nodelay on; #数据在传输的过程中不进缓存
client_max_body_size 200M; # 上传文件需要调整请求体大小
client_body_buffer_size 128k;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}

10
vueJs/src/router/modules/admin.ts

@ -13,7 +13,7 @@ const adminRouter: RouteConfig = {
children: [ children: [
{ {
path: 'settings', path: 'settings',
component: () => import('@/views/admin/settings/index.vue'), component: () => import(/* webpackChunkName: "settings" */ '@/views/admin/settings/index.vue'),
name: 'settings', name: 'settings',
meta: { meta: {
title: 'settings', title: 'settings',
@ -23,7 +23,7 @@ const adminRouter: RouteConfig = {
}, },
{ {
path: 'users', path: 'users',
component: () => import('@/views/admin/users/index.vue'), component: () => import(/* webpackChunkName: "users" */ '@/views/admin/users/index.vue'),
name: 'users', name: 'users',
meta: { meta: {
title: 'users', title: 'users',
@ -33,7 +33,7 @@ const adminRouter: RouteConfig = {
}, },
{ {
path: 'roles', path: 'roles',
component: () => import('@/views/admin/roles/index.vue'), component: () => import(/* webpackChunkName: "roles" */ '@/views/admin/roles/index.vue'),
name: 'roles', name: 'roles',
meta: { meta: {
title: 'roles', title: 'roles',
@ -43,7 +43,7 @@ const adminRouter: RouteConfig = {
}, },
{ {
path: 'tenants', path: 'tenants',
component: () => import('@/views/admin/tenants/index.vue'), component: () => import(/* webpackChunkName: "tenants" */ '@/views/admin/tenants/index.vue'),
name: 'tenants', name: 'tenants',
meta: { meta: {
title: 'tenants', title: 'tenants',
@ -53,7 +53,7 @@ const adminRouter: RouteConfig = {
}, },
{ {
path: 'organization-unit', path: 'organization-unit',
component: () => import('@/views/admin/organization-unit/index.vue'), component: () => import(/* webpackChunkName: "organization-unit" */ '@/views/admin/organization-unit/index.vue'),
name: 'organization-unit', name: 'organization-unit',
meta: { meta: {
title: 'organizationUnit', title: 'organizationUnit',

10
vueJs/src/router/modules/apigateway.ts

@ -13,7 +13,7 @@ const apigatewayRouter: RouteConfig = {
children: [ children: [
{ {
path: 'group', path: 'group',
component: () => import('@/views/admin/apigateway/group.vue'), component: () => import(/* webpackChunkName: "group" */ '@/views/admin/apigateway/group.vue'),
name: 'group', name: 'group',
meta: { meta: {
title: 'group', title: 'group',
@ -23,7 +23,7 @@ const apigatewayRouter: RouteConfig = {
}, },
{ {
path: 'global', path: 'global',
component: () => import('@/views/admin/apigateway/global.vue'), component: () => import(/* webpackChunkName: "global" */ '@/views/admin/apigateway/global.vue'),
name: 'global', name: 'global',
meta: { meta: {
title: 'global', title: 'global',
@ -33,7 +33,7 @@ const apigatewayRouter: RouteConfig = {
}, },
{ {
path: 'route', path: 'route',
component: () => import('@/views/admin/apigateway/route.vue'), component: () => import(/* webpackChunkName: "route" */ '@/views/admin/apigateway/route.vue'),
name: 'route', name: 'route',
meta: { meta: {
title: 'route', title: 'route',
@ -42,8 +42,8 @@ const apigatewayRouter: RouteConfig = {
} }
}, },
{ {
path: 'aggregateRoute', path: 'aggregate-route',
component: () => import('@/views/admin/apigateway/aggregateRoute.vue'), component: () => import(/* webpackChunkName: "aggregate-route" */ '@/views/admin/apigateway/aggregateRoute.vue'),
name: 'aggregateRoute', name: 'aggregateRoute',
meta: { meta: {
title: 'aggregateRoute', title: 'aggregateRoute',

2
vueJs/src/router/modules/file-management.ts

@ -13,7 +13,7 @@ const fileManagementRouter: RouteConfig = {
children: [ children: [
{ {
path: 'file-system', path: 'file-system',
component: () => import('@/views/file-management/index.vue'), component: () => import(/* webpackChunkName: "file-system" */ '@/views/file-management/index.vue'),
name: 'filesystem', name: 'filesystem',
meta: { meta: {
title: 'filesystem', title: 'filesystem',

10
vueJs/src/router/modules/identityServer.ts

@ -13,7 +13,7 @@ const identityServerRouter: RouteConfig = {
children: [ children: [
{ {
path: 'clients', path: 'clients',
component: () => import('@/views/admin/identityServer/client/index.vue'), component: () => import(/* webpackChunkName: "clients" */ '@/views/admin/identityServer/client/index.vue'),
name: 'clients', name: 'clients',
meta: { meta: {
title: 'clients', title: 'clients',
@ -22,8 +22,8 @@ const identityServerRouter: RouteConfig = {
} }
}, },
{ {
path: 'apiresources', path: 'api-resources',
component: () => import('@/views/admin/identityServer/api-resources/index.vue'), component: () => import(/* webpackChunkName: "api-resources" */ '@/views/admin/identityServer/api-resources/index.vue'),
name: 'apiresources', name: 'apiresources',
meta: { meta: {
title: 'apiresources', title: 'apiresources',
@ -32,8 +32,8 @@ const identityServerRouter: RouteConfig = {
} }
}, },
{ {
path: 'identityresources', path: 'identity-resources',
component: () => import('@/views/admin/identityServer/identity-resources/index.vue'), component: () => import(/* webpackChunkName: "identity-resources" */ '@/views/admin/identityServer/identity-resources/index.vue'),
name: 'identityresources', name: 'identityresources',
meta: { meta: {
title: 'identityresources', title: 'identityresources',

Loading…
Cancel
Save