From eab022871d12ef61a7b799d572cd4c171f19cabe Mon Sep 17 00:00:00 2001 From: colin Date: Tue, 18 Aug 2026 14:57:05 +0800 Subject: [PATCH] fix: Fix the client proxy of the BlobManagement module --- .../BlobClientProxy.Generated.cs | 34 +- .../Dtos/BlobDownloadByIdInput.cs | 15 + .../Dtos/BlobDownloadByNameInput.cs | 2 + .../Abp/BlobManagement/Dtos/BlobDto.cs | 2 +- .../Abp/BlobManagement/IBlobAppService.cs | 10 +- .../BlobManagement/IPrivateBlobAppService.cs | 4 +- .../BlobManagement/IPublicBlobAppService.cs | 4 +- .../BlobIntegrationClientProxy.Generated.cs | 4 +- .../Integration/IBlobIntegrationService.cs | 2 +- .../PrivateBlobClientProxy.Generated.cs | 8 +- .../PublicBlobClientProxy.Generated.cs | 8 +- .../blob-management-generate-proxy.json | 10265 ++++++++++++---- .../BlobManagementBlobProvider.cs | 2 +- common.props | 4 + 14 files changed, 7681 insertions(+), 2683 deletions(-) create mode 100644 aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Dtos/BlobDownloadByIdInput.cs diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/BlobClientProxy.Generated.cs b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/BlobClientProxy.Generated.cs index 99fc49b33..bcf573b86 100644 --- a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/BlobClientProxy.Generated.cs +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/BlobClientProxy.Generated.cs @@ -51,17 +51,25 @@ public partial class BlobClientProxy : ClientProxyBase, IBlobAp }); } - public virtual async Task GetContentAsync(Guid id) + public virtual async Task DownloadAsync(BlobDownloadByIdInput input) { - return await RequestAsync(nameof(GetContentAsync), new ClientProxyRequestTypeValue + return await RequestAsync(nameof(DownloadAsync), new ClientProxyRequestTypeValue { - { typeof(Guid), id } + { typeof(BlobDownloadByIdInput), input } }); } - public virtual async Task GetContentByNameAsync(BlobDownloadByNameInput input) + public virtual async Task PreviewAsync(BlobDownloadByIdInput input) { - return await RequestAsync(nameof(GetContentByNameAsync), new ClientProxyRequestTypeValue + return await RequestAsync(nameof(PreviewAsync), new ClientProxyRequestTypeValue + { + { typeof(BlobDownloadByIdInput), input } + }); + } + + public virtual async Task DownloadByNameAsync(BlobDownloadByNameInput input) + { + return await RequestAsync(nameof(DownloadByNameAsync), new ClientProxyRequestTypeValue { { typeof(BlobDownloadByNameInput), input } }); @@ -82,4 +90,20 @@ public partial class BlobClientProxy : ClientProxyBase, IBlobAp { typeof(BlobGetPagedListInput), input } }); } + + public virtual async Task GenerateDownloadUrlAsync(Guid id) + { + return await RequestAsync(nameof(GenerateDownloadUrlAsync), new ClientProxyRequestTypeValue + { + { typeof(Guid), id } + }); + } + + public virtual async Task GeneratePreviewUrlAsync(Guid id) + { + return await RequestAsync(nameof(GeneratePreviewUrlAsync), new ClientProxyRequestTypeValue + { + { typeof(Guid), id } + }); + } } diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Dtos/BlobDownloadByIdInput.cs b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Dtos/BlobDownloadByIdInput.cs new file mode 100644 index 000000000..9f0baca61 --- /dev/null +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Dtos/BlobDownloadByIdInput.cs @@ -0,0 +1,15 @@ +// This file is automatically generated by ABP framework to use MVC Controllers from CSharp +using LINGYUN.Abp.BlobManagement.Dtos; +using System; +using System.Collections.Generic; +using Volo.Abp; +using Volo.Abp.Application.Dtos; +using Volo.Abp.ObjectExtending; + +// ReSharper disable once CheckNamespace +namespace LINGYUN.Abp.BlobManagement.Dtos; + +public class BlobDownloadByIdInput +{ + public string Key { get; set; } +} diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Dtos/BlobDownloadByNameInput.cs b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Dtos/BlobDownloadByNameInput.cs index 7a1ee583f..26a131725 100644 --- a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Dtos/BlobDownloadByNameInput.cs +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Dtos/BlobDownloadByNameInput.cs @@ -11,6 +11,8 @@ namespace LINGYUN.Abp.BlobManagement.Dtos; public class BlobDownloadByNameInput { + public Guid? TenantId { get; set; } + public string ContainerName { get; set; } public string BlobName { get; set; } diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Dtos/BlobDto.cs b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Dtos/BlobDto.cs index 32263f6c5..4c6f145ca 100644 --- a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Dtos/BlobDto.cs +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Dtos/BlobDto.cs @@ -14,7 +14,7 @@ public class BlobDto : ExtensibleAuditedEntityDto { public string Name { get; set; } - public string Path { get; set; } + public string FullName { get; set; } public BlobType Type { get; set; } diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/IBlobAppService.cs b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/IBlobAppService.cs index 2c93954c3..d356589bd 100644 --- a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/IBlobAppService.cs +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/IBlobAppService.cs @@ -22,9 +22,15 @@ public interface IBlobAppService : IApplicationService Task DeleteAsync(Guid id); - Task GetContentAsync(Guid id); + Task GeneratePreviewUrlAsync(Guid id); - Task GetContentByNameAsync(BlobDownloadByNameInput input); + Task GenerateDownloadUrlAsync(Guid id); + + Task DownloadAsync(BlobDownloadByIdInput input); + + Task PreviewAsync(BlobDownloadByIdInput input); + + Task DownloadByNameAsync(BlobDownloadByNameInput input); Task GetAsync(Guid id); diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/IPrivateBlobAppService.cs b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/IPrivateBlobAppService.cs index 18b3e3e2e..7064d353c 100644 --- a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/IPrivateBlobAppService.cs +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/IPrivateBlobAppService.cs @@ -22,9 +22,9 @@ public interface IPrivateBlobAppService : IApplicationService Task DeleteAsync(Guid id); - Task GetContentAsync(Guid id); + Task DownloadAsync(Guid id); - Task GetContentByNameAsync(string name); + Task DownloadByNameAsync(string name); Task GetAsync(Guid id); diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/IPublicBlobAppService.cs b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/IPublicBlobAppService.cs index 20c816c19..447c2d652 100644 --- a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/IPublicBlobAppService.cs +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/IPublicBlobAppService.cs @@ -14,9 +14,9 @@ namespace LINGYUN.Abp.BlobManagement; public interface IPublicBlobAppService : IApplicationService { - Task GetContentAsync(Guid id); + Task DownloadAsync(Guid id); - Task GetContentByNameAsync(string name); + Task DownloadByNameAsync(string name); Task GetAsync(Guid id); diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Integration/BlobIntegrationClientProxy.Generated.cs b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Integration/BlobIntegrationClientProxy.Generated.cs index 251e98760..6e59c8252 100644 --- a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Integration/BlobIntegrationClientProxy.Generated.cs +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Integration/BlobIntegrationClientProxy.Generated.cs @@ -45,9 +45,9 @@ public partial class BlobIntegrationClientProxy : ClientProxyBase GetContentAsync(BlobFileGetByNameIntegrationDto input) + public virtual async Task DownloadAsync(BlobFileGetByNameIntegrationDto input) { - return await RequestAsync(nameof(GetContentAsync), new ClientProxyRequestTypeValue + return await RequestAsync(nameof(DownloadAsync), new ClientProxyRequestTypeValue { { typeof(BlobFileGetByNameIntegrationDto), input } }); diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Integration/IBlobIntegrationService.cs b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Integration/IBlobIntegrationService.cs index cc71c5aa5..73e5d1057 100644 --- a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Integration/IBlobIntegrationService.cs +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/Integration/IBlobIntegrationService.cs @@ -21,5 +21,5 @@ public interface IBlobIntegrationService : IApplicationService Task ExistsAsync(BlobFileGetByNameIntegrationDto input); - Task GetContentAsync(BlobFileGetByNameIntegrationDto input); + Task DownloadAsync(BlobFileGetByNameIntegrationDto input); } diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/PrivateBlobClientProxy.Generated.cs b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/PrivateBlobClientProxy.Generated.cs index d1a65250f..a573d27d4 100644 --- a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/PrivateBlobClientProxy.Generated.cs +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/PrivateBlobClientProxy.Generated.cs @@ -51,17 +51,17 @@ public partial class PrivateBlobClientProxy : ClientProxyBase GetContentAsync(Guid id) + public virtual async Task DownloadAsync(Guid id) { - return await RequestAsync(nameof(GetContentAsync), new ClientProxyRequestTypeValue + return await RequestAsync(nameof(DownloadAsync), new ClientProxyRequestTypeValue { { typeof(Guid), id } }); } - public virtual async Task GetContentByNameAsync(string name) + public virtual async Task DownloadByNameAsync(string name) { - return await RequestAsync(nameof(GetContentByNameAsync), new ClientProxyRequestTypeValue + return await RequestAsync(nameof(DownloadByNameAsync), new ClientProxyRequestTypeValue { { typeof(string), name } }); diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/PublicBlobClientProxy.Generated.cs b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/PublicBlobClientProxy.Generated.cs index a61459dc5..1c99e158a 100644 --- a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/PublicBlobClientProxy.Generated.cs +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/LINGYUN/Abp/BlobManagement/PublicBlobClientProxy.Generated.cs @@ -19,17 +19,17 @@ namespace LINGYUN.Abp.BlobManagement; [ExposeServices(typeof(IPublicBlobAppService), typeof(PublicBlobClientProxy))] public partial class PublicBlobClientProxy : ClientProxyBase, IPublicBlobAppService { - public virtual async Task GetContentAsync(Guid id) + public virtual async Task DownloadAsync(Guid id) { - return await RequestAsync(nameof(GetContentAsync), new ClientProxyRequestTypeValue + return await RequestAsync(nameof(DownloadAsync), new ClientProxyRequestTypeValue { { typeof(Guid), id } }); } - public virtual async Task GetContentByNameAsync(string name) + public virtual async Task DownloadByNameAsync(string name) { - return await RequestAsync(nameof(GetContentByNameAsync), new ClientProxyRequestTypeValue + return await RequestAsync(nameof(DownloadByNameAsync), new ClientProxyRequestTypeValue { { typeof(string), name } }); diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/blob-management-generate-proxy.json b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/blob-management-generate-proxy.json index c8a34ed6b..9d201dc93 100644 --- a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/blob-management-generate-proxy.json +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobManagement.HttpApi.Client/ClientProxies/blob-management-generate-proxy.json @@ -11,6 +11,10 @@ "isIntegrationService": false, "apiVersion": null, "type": "LINGYUN.Abp.BlobManagement.BlobContainerController", + "summary": null, + "remarks": null, + "description": null, + "displayName": null, "interfaces": [ { "type": "LINGYUN.Abp.BlobManagement.IBlobContainerAppService", @@ -25,12 +29,18 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerCreateDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerCreateDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -42,12 +52,18 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Void", - "typeSimple": "System.Void" + "typeSimple": "System.Void", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -59,12 +75,18 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -76,12 +98,18 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerGetPagedListInput", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerGetPagedListInput", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Application.Dtos.PagedResultDto", - "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto" + "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } } ] @@ -101,7 +129,10 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerCreateDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerCreateDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -115,16 +146,30 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Body", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobContainerAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobContainerAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "DeleteAsyncById": { "uniqueName": "DeleteAsyncById", @@ -139,7 +184,10 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -153,16 +201,30 @@ "defaultValue": null, "constraintTypes": [], "bindingSourceId": "Path", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Void", - "typeSimple": "System.Void" + "typeSimple": "System.Void", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobContainerAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobContainerAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "GetAsyncById": { "uniqueName": "GetAsyncById", @@ -177,7 +239,10 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -191,16 +256,30 @@ "defaultValue": null, "constraintTypes": [], "bindingSourceId": "Path", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobContainerAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobContainerAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "GetListAsyncByInput": { "uniqueName": "GetListAsyncByInput", @@ -215,7 +294,10 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerGetPagedListInput", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerGetPagedListInput", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -229,7 +311,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -241,7 +326,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -253,7 +341,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -265,16 +356,30 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Application.Dtos.PagedResultDto", - "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto" + "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobContainerAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobContainerAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null } } }, @@ -285,6 +390,10 @@ "isIntegrationService": false, "apiVersion": null, "type": "LINGYUN.Abp.BlobManagement.BlobController", + "summary": null, + "remarks": null, + "description": null, + "displayName": null, "interfaces": [ { "type": "LINGYUN.Abp.BlobManagement.IBlobAppService", @@ -299,12 +408,18 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -316,12 +431,18 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Void", - "typeSimple": "System.Void" + "typeSimple": "System.Void", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -333,12 +454,18 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -350,16 +477,45 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Void", - "typeSimple": "System.Void" + "typeSimple": "System.Void", + "summary": null, + "contentTypes": null, + "isRemoteStream": false + } + }, + { + "name": "GeneratePreviewUrlAsync", + "parametersOnMethod": [ + { + "name": "id", + "typeAsString": "System.Guid, System.Private.CoreLib", + "type": "System.Guid", + "typeSimple": "string", + "isOptional": false, + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null + } + ], + "returnValue": { + "type": "System.String", + "typeSimple": "string", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { - "name": "GetContentAsync", + "name": "GenerateDownloadUrlAsync", "parametersOnMethod": [ { "name": "id", @@ -367,16 +523,68 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null + } + ], + "returnValue": { + "type": "System.String", + "typeSimple": "string", + "summary": null, + "contentTypes": null, + "isRemoteStream": false + } + }, + { + "name": "DownloadAsync", + "parametersOnMethod": [ + { + "name": "input", + "typeAsString": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput, LINGYUN.Abp.BlobManagement.Application.Contracts", + "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput", + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput", + "isOptional": false, + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null + } + ], + "returnValue": { + "type": "Volo.Abp.Content.IRemoteStreamContent", + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": null, + "isRemoteStream": true + } + }, + { + "name": "PreviewAsync", + "parametersOnMethod": [ + { + "name": "input", + "typeAsString": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput, LINGYUN.Abp.BlobManagement.Application.Contracts", + "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput", + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput", + "isOptional": false, + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": null, + "isRemoteStream": true } }, { - "name": "GetContentByNameAsync", + "name": "DownloadByNameAsync", "parametersOnMethod": [ { "name": "input", @@ -384,12 +592,18 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByNameInput", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByNameInput", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": null, + "isRemoteStream": true } }, { @@ -401,12 +615,18 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -418,12 +638,18 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListInput", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListInput", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Application.Dtos.PagedResultDto", - "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto" + "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } } ] @@ -443,7 +669,10 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -457,7 +686,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -469,7 +701,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -481,7 +716,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -493,7 +731,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -505,16 +746,30 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "FormFile", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "CreateChunkFileAsyncByInput": { "uniqueName": "CreateChunkFileAsyncByInput", @@ -529,7 +784,10 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -543,7 +801,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -555,7 +816,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -567,7 +831,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -579,7 +846,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -591,7 +861,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -603,7 +876,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -615,7 +891,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -627,7 +906,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -639,16 +921,30 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "FormFile", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Void", - "typeSimple": "System.Void" + "typeSimple": "System.Void", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "CreateFolderAsyncByInput": { "uniqueName": "CreateFolderAsyncByInput", @@ -663,7 +959,10 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -677,16 +976,30 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Body", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "DeleteAsyncById": { "uniqueName": "DeleteAsyncById", @@ -701,7 +1014,10 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -715,60 +1031,146 @@ "defaultValue": null, "constraintTypes": [], "bindingSourceId": "Path", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Void", - "typeSimple": "System.Void" + "typeSimple": "System.Void", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "GetContentAsyncById": { - "uniqueName": "GetContentAsyncById", - "name": "GetContentAsync", + "DownloadAsyncByInput": { + "uniqueName": "DownloadAsyncByInput", + "name": "DownloadAsync", "httpMethod": "GET", - "url": "api/blob-management/blobs/uid/{id}/content", + "url": "api/blob-management/blobs/download/{key}", "supportedVersions": [], "parametersOnMethod": [ { - "name": "id", - "typeAsString": "System.Guid, System.Private.CoreLib", - "type": "System.Guid", + "name": "input", + "typeAsString": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput, LINGYUN.Abp.BlobManagement.Application.Contracts", + "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput", + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput", + "isOptional": false, + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null + } + ], + "parameters": [ + { + "nameOnMethod": "input", + "name": "Key", + "jsonName": null, + "type": "System.String", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "constraintTypes": [], + "bindingSourceId": "Path", + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null + } + ], + "returnValue": { + "type": "Volo.Abp.Content.IRemoteStreamContent", + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": true + }, + "allowAnonymous": null, + "authorizeDatas": [], + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "PreviewAsyncByInput": { + "uniqueName": "PreviewAsyncByInput", + "name": "PreviewAsync", + "httpMethod": "GET", + "url": "api/blob-management/blobs/preview/{key}", + "supportedVersions": [], + "parametersOnMethod": [ + { + "name": "input", + "typeAsString": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput, LINGYUN.Abp.BlobManagement.Application.Contracts", + "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput", + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput", + "isOptional": false, + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ { - "nameOnMethod": "id", - "name": "id", + "nameOnMethod": "input", + "name": "Key", "jsonName": null, - "type": "System.Guid", + "type": "System.String", "typeSimple": "string", "isOptional": false, "defaultValue": null, "constraintTypes": [], "bindingSourceId": "Path", - "descriptorName": "" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": true }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "GetContentByNameAsyncByInput": { - "uniqueName": "GetContentByNameAsyncByInput", - "name": "GetContentByNameAsync", + "DownloadByNameAsyncByInput": { + "uniqueName": "DownloadByNameAsyncByInput", + "name": "DownloadByNameAsync", "httpMethod": "GET", - "url": "api/blob-management/blobs/content", + "url": "api/blob-management/blobs/download/by-name/{name}", "supportedVersions": [], "parametersOnMethod": [ { @@ -777,10 +1179,28 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByNameInput", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByNameInput", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ + { + "nameOnMethod": "input", + "name": "TenantId", + "jsonName": null, + "type": "System.Guid?", + "typeSimple": "string?", + "isOptional": false, + "defaultValue": null, + "constraintTypes": null, + "bindingSourceId": "ModelBinding", + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null + }, { "nameOnMethod": "input", "name": "ContainerName", @@ -791,7 +1211,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -803,16 +1226,45 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null + }, + { + "nameOnMethod": "input", + "name": "name", + "jsonName": null, + "type": null, + "typeSimple": null, + "isOptional": false, + "defaultValue": null, + "constraintTypes": [], + "bindingSourceId": "Path", + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": true }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "GetAsyncById": { "uniqueName": "GetAsyncById", @@ -827,7 +1279,10 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -841,16 +1296,30 @@ "defaultValue": null, "constraintTypes": [], "bindingSourceId": "Path", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "GetListAsyncByInput": { "uniqueName": "GetListAsyncByInput", @@ -865,7 +1334,10 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListInput", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListInput", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -879,7 +1351,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -891,7 +1366,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -903,7 +1381,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -915,7 +1396,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -927,7 +1411,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -939,7 +1426,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -951,16 +1441,140 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Application.Dtos.PagedResultDto", - "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto" + "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false + }, + "allowAnonymous": null, + "authorizeDatas": [], + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "GenerateDownloadUrlAsyncById": { + "uniqueName": "GenerateDownloadUrlAsyncById", + "name": "GenerateDownloadUrlAsync", + "httpMethod": "GET", + "url": "api/blob-management/blobs/generate/download-url/{id}", + "supportedVersions": [], + "parametersOnMethod": [ + { + "name": "id", + "typeAsString": "System.Guid, System.Private.CoreLib", + "type": "System.Guid", + "typeSimple": "string", + "isOptional": false, + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null + } + ], + "parameters": [ + { + "nameOnMethod": "id", + "name": "id", + "jsonName": null, + "type": "System.Guid", + "typeSimple": "string", + "isOptional": false, + "defaultValue": null, + "constraintTypes": [], + "bindingSourceId": "Path", + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null + } + ], + "returnValue": { + "type": "System.String", + "typeSimple": "string", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false + }, + "allowAnonymous": null, + "authorizeDatas": [], + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "GeneratePreviewUrlAsyncById": { + "uniqueName": "GeneratePreviewUrlAsyncById", + "name": "GeneratePreviewUrlAsync", + "httpMethod": "GET", + "url": "api/blob-management/blobs/generate/preview-url/{id}", + "supportedVersions": [], + "parametersOnMethod": [ + { + "name": "id", + "typeAsString": "System.Guid, System.Private.CoreLib", + "type": "System.Guid", + "typeSimple": "string", + "isOptional": false, + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null + } + ], + "parameters": [ + { + "nameOnMethod": "id", + "name": "id", + "jsonName": null, + "type": "System.Guid", + "typeSimple": "string", + "isOptional": false, + "defaultValue": null, + "constraintTypes": [], + "bindingSourceId": "Path", + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null + } + ], + "returnValue": { + "type": "System.String", + "typeSimple": "string", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null } } }, @@ -971,6 +1585,10 @@ "isIntegrationService": true, "apiVersion": null, "type": "LINGYUN.Abp.BlobManagement.Integration.BlobIntegrationController", + "summary": null, + "remarks": null, + "description": null, + "displayName": null, "interfaces": [ { "type": "LINGYUN.Abp.BlobManagement.Integration.IBlobIntegrationService", @@ -985,12 +1603,18 @@ "type": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileCreateIntegrationDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileCreateIntegrationDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -1002,12 +1626,18 @@ "type": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Void", - "typeSimple": "System.Void" + "typeSimple": "System.Void", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -1019,16 +1649,22 @@ "type": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Boolean", - "typeSimple": "boolean" + "typeSimple": "boolean", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { - "name": "GetContentAsync", + "name": "DownloadAsync", "parametersOnMethod": [ { "name": "input", @@ -1036,12 +1672,18 @@ "type": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": null, + "isRemoteStream": true } } ] @@ -1061,7 +1703,10 @@ "type": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileCreateIntegrationDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileCreateIntegrationDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -1075,7 +1720,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1087,7 +1735,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "FormFile", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1099,7 +1750,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1111,16 +1765,30 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.Integration.IBlobIntegrationService" + "implementFrom": "LINGYUN.Abp.BlobManagement.Integration.IBlobIntegrationService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "DeleteAsyncByInput": { "uniqueName": "DeleteAsyncByInput", @@ -1135,7 +1803,10 @@ "type": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -1149,7 +1820,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1161,16 +1835,30 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Void", - "typeSimple": "System.Void" + "typeSimple": "System.Void", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.Integration.IBlobIntegrationService" + "implementFrom": "LINGYUN.Abp.BlobManagement.Integration.IBlobIntegrationService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "ExistsAsyncByInput": { "uniqueName": "ExistsAsyncByInput", @@ -1185,7 +1873,10 @@ "type": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -1199,7 +1890,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1211,20 +1905,34 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Boolean", - "typeSimple": "boolean" + "typeSimple": "boolean", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.Integration.IBlobIntegrationService" + "implementFrom": "LINGYUN.Abp.BlobManagement.Integration.IBlobIntegrationService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "GetContentAsyncByInput": { - "uniqueName": "GetContentAsyncByInput", - "name": "GetContentAsync", + "DownloadAsyncByInput": { + "uniqueName": "DownloadAsyncByInput", + "name": "DownloadAsync", "httpMethod": "GET", "url": "integration-api/blob-management/blobs/download", "supportedVersions": [], @@ -1235,7 +1943,10 @@ "type": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -1249,7 +1960,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1261,16 +1975,30 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": true }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.Integration.IBlobIntegrationService" + "implementFrom": "LINGYUN.Abp.BlobManagement.Integration.IBlobIntegrationService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null } } }, @@ -1281,6 +2009,10 @@ "isIntegrationService": false, "apiVersion": null, "type": "LINGYUN.Abp.BlobManagement.PrivateBlobController", + "summary": null, + "remarks": null, + "description": null, + "displayName": null, "interfaces": [ { "type": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService", @@ -1295,12 +2027,18 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateWithoutContainerDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateWithoutContainerDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -1312,12 +2050,18 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateWithoutContainerDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateWithoutContainerDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Void", - "typeSimple": "System.Void" + "typeSimple": "System.Void", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -1329,12 +2073,18 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateWithoutContainerDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateWithoutContainerDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -1346,16 +2096,22 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Void", - "typeSimple": "System.Void" + "typeSimple": "System.Void", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { - "name": "GetContentAsync", + "name": "DownloadAsync", "parametersOnMethod": [ { "name": "id", @@ -1363,16 +2119,22 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": null, + "isRemoteStream": true } }, { - "name": "GetContentByNameAsync", + "name": "DownloadByNameAsync", "parametersOnMethod": [ { "name": "name", @@ -1380,12 +2142,18 @@ "type": "System.String", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": null, + "isRemoteStream": true } }, { @@ -1397,12 +2165,18 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -1414,12 +2188,18 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListWithoutContainerInput", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListWithoutContainerInput", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Application.Dtos.PagedResultDto", - "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto" + "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } } ] @@ -1439,7 +2219,10 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateWithoutContainerDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateWithoutContainerDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -1453,7 +2236,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1465,7 +2251,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1477,7 +2266,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1489,12 +2281,22 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "FormFile", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": false, "authorizeDatas": [ @@ -1503,7 +2305,11 @@ "roles": null } ], - "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "CreateChunkFileAsyncByInput": { "uniqueName": "CreateChunkFileAsyncByInput", @@ -1518,7 +2324,10 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateWithoutContainerDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateWithoutContainerDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -1532,7 +2341,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1544,7 +2356,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1556,7 +2371,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1568,7 +2386,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1580,7 +2401,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1592,7 +2416,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1604,7 +2431,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Form", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1616,12 +2446,22 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "FormFile", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Void", - "typeSimple": "System.Void" + "typeSimple": "System.Void", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": false, "authorizeDatas": [ @@ -1630,7 +2470,11 @@ "roles": null } ], - "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "CreateFolderAsyncByInput": { "uniqueName": "CreateFolderAsyncByInput", @@ -1645,7 +2489,10 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateWithoutContainerDto", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateWithoutContainerDto", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -1659,12 +2506,22 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "Body", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": false, "authorizeDatas": [ @@ -1673,7 +2530,11 @@ "roles": null } ], - "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "DeleteAsyncById": { "uniqueName": "DeleteAsyncById", @@ -1688,7 +2549,10 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -1702,12 +2566,22 @@ "defaultValue": null, "constraintTypes": [], "bindingSourceId": "Path", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "System.Void", - "typeSimple": "System.Void" + "typeSimple": "System.Void", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": false, "authorizeDatas": [ @@ -1716,13 +2590,17 @@ "roles": null } ], - "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "GetContentAsyncById": { - "uniqueName": "GetContentAsyncById", - "name": "GetContentAsync", + "DownloadAsyncById": { + "uniqueName": "DownloadAsyncById", + "name": "DownloadAsync", "httpMethod": "GET", - "url": "api/blob-management/private/blobs/uid/{id}/content", + "url": "api/blob-management/private/blobs/download/{id}", "supportedVersions": [], "parametersOnMethod": [ { @@ -1731,7 +2609,10 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -1745,12 +2626,22 @@ "defaultValue": null, "constraintTypes": [], "bindingSourceId": "Path", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": true }, "allowAnonymous": false, "authorizeDatas": [ @@ -1759,13 +2650,17 @@ "roles": null } ], - "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "GetContentByNameAsyncByName": { - "uniqueName": "GetContentByNameAsyncByName", - "name": "GetContentByNameAsync", + "DownloadByNameAsyncByName": { + "uniqueName": "DownloadByNameAsyncByName", + "name": "DownloadByNameAsync", "httpMethod": "GET", - "url": "api/blob-management/private/blobs/content/{name}", + "url": "api/blob-management/private/blobs/download/by-name/{name}", "supportedVersions": [], "parametersOnMethod": [ { @@ -1774,7 +2669,10 @@ "type": "System.String", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -1788,12 +2686,22 @@ "defaultValue": null, "constraintTypes": [], "bindingSourceId": "Path", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": true }, "allowAnonymous": false, "authorizeDatas": [ @@ -1802,7 +2710,11 @@ "roles": null } ], - "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "GetAsyncById": { "uniqueName": "GetAsyncById", @@ -1817,7 +2729,10 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -1831,12 +2746,22 @@ "defaultValue": null, "constraintTypes": [], "bindingSourceId": "Path", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": false, "authorizeDatas": [ @@ -1845,7 +2770,11 @@ "roles": null } ], - "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "GetListAsyncByInput": { "uniqueName": "GetListAsyncByInput", @@ -1860,7 +2789,10 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListWithoutContainerInput", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListWithoutContainerInput", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -1874,7 +2806,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1886,7 +2821,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1898,7 +2836,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1910,7 +2851,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1922,7 +2866,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -1934,12 +2881,22 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Application.Dtos.PagedResultDto", - "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto" + "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": false, "authorizeDatas": [ @@ -1948,7 +2905,11 @@ "roles": null } ], - "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IPrivateBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null } } }, @@ -1959,13 +2920,17 @@ "isIntegrationService": false, "apiVersion": null, "type": "LINGYUN.Abp.BlobManagement.PublicBlobController", + "summary": null, + "remarks": null, + "description": null, + "displayName": null, "interfaces": [ { "type": "LINGYUN.Abp.BlobManagement.IPublicBlobAppService", "name": "IPublicBlobAppService", "methods": [ { - "name": "GetContentAsync", + "name": "DownloadAsync", "parametersOnMethod": [ { "name": "id", @@ -1973,16 +2938,22 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": null, + "isRemoteStream": true } }, { - "name": "GetContentByNameAsync", + "name": "DownloadByNameAsync", "parametersOnMethod": [ { "name": "name", @@ -1990,12 +2961,18 @@ "type": "System.String", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": null, + "isRemoteStream": true } }, { @@ -2007,12 +2984,18 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } }, { @@ -2024,23 +3007,29 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListWithoutContainerInput", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListWithoutContainerInput", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Application.Dtos.PagedResultDto", - "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto" + "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto", + "summary": null, + "contentTypes": null, + "isRemoteStream": false } } ] } ], "actions": { - "GetContentAsyncById": { - "uniqueName": "GetContentAsyncById", - "name": "GetContentAsync", + "DownloadAsyncById": { + "uniqueName": "DownloadAsyncById", + "name": "DownloadAsync", "httpMethod": "GET", - "url": "api/blob-management/public/blobs/uid/{id}/content", + "url": "api/blob-management/public/blobs/download/{id}", "supportedVersions": [], "parametersOnMethod": [ { @@ -2049,7 +3038,10 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -2063,22 +3055,36 @@ "defaultValue": null, "constraintTypes": [], "bindingSourceId": "Path", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": true }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IPublicBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IPublicBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "GetContentByNameAsyncByName": { - "uniqueName": "GetContentByNameAsyncByName", - "name": "GetContentByNameAsync", + "DownloadByNameAsyncByName": { + "uniqueName": "DownloadByNameAsyncByName", + "name": "DownloadByNameAsync", "httpMethod": "GET", - "url": "api/blob-management/public/blobs/content/{name}", + "url": "api/blob-management/public/blobs/download/by-name/{name}", "supportedVersions": [], "parametersOnMethod": [ { @@ -2087,7 +3093,10 @@ "type": "System.String", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -2101,16 +3110,30 @@ "defaultValue": null, "constraintTypes": [], "bindingSourceId": "Path", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent" + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": true }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IPublicBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IPublicBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "GetAsyncById": { "uniqueName": "GetAsyncById", @@ -2125,7 +3148,10 @@ "type": "System.Guid", "typeSimple": "string", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -2139,16 +3165,30 @@ "defaultValue": null, "constraintTypes": [], "bindingSourceId": "Path", - "descriptorName": "" + "descriptorName": "", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", - "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto" + "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IPublicBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IPublicBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "GetListAsyncByInput": { "uniqueName": "GetListAsyncByInput", @@ -2163,7 +3203,10 @@ "type": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListWithoutContainerInput", "typeSimple": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListWithoutContainerInput", "isOptional": false, - "defaultValue": null + "defaultValue": null, + "summary": null, + "description": null, + "displayName": null } ], "parameters": [ @@ -2177,7 +3220,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -2189,7 +3235,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -2201,7 +3250,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -2213,7 +3265,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -2225,7 +3280,10 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null }, { "nameOnMethod": "input", @@ -2237,16 +3295,30 @@ "defaultValue": null, "constraintTypes": null, "bindingSourceId": "ModelBinding", - "descriptorName": "input" + "descriptorName": "input", + "summary": null, + "description": null, + "displayName": null } ], "returnValue": { "type": "Volo.Abp.Application.Dtos.PagedResultDto", - "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto" + "typeSimple": "Volo.Abp.Application.Dtos.PagedResultDto", + "summary": null, + "contentTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "isRemoteStream": false }, "allowAnonymous": null, "authorizeDatas": [], - "implementFrom": "LINGYUN.Abp.BlobManagement.IPublicBlobAppService" + "implementFrom": "LINGYUN.Abp.BlobManagement.IPublicBlobAppService", + "summary": null, + "remarks": null, + "description": null, + "displayName": null } } } @@ -2254,7 +3326,25 @@ } }, "types": { - "LINGYUN.Abp.AspNetCore.Mvc.Localization.GetLanguageWithFilterDto": { + "LINGYUN.Abp.BlobManagement.BlobType": { + "baseType": "System.Enum", + "isEnum": true, + "enumNames": [ + "Folder", + "File" + ], + "enumValues": [ + 0, + 1 + ], + "genericArguments": null, + "properties": null, + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerCreateDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -2262,29 +3352,36 @@ "genericArguments": null, "properties": [ { - "name": "Filter", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, + "isRequired": true, + "minLength": 0, + "maxLength": 128, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.AspNetCore.Mvc.Localization.GetResourceWithFilterDto": { - "baseType": null, + "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto": { + "baseType": "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Filter", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -2294,45 +3391,71 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Abp.AspNetCore.Mvc.Localization.GetTextByKeyInput": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Key", + "name": "ConcurrencyStamp", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerGetPagedListInput": { + "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "CultureName", + "name": "Filter", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByIdInput": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "ResourceName", + "name": "Key", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -2342,11 +3465,18 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.AspNetCore.Mvc.Localization.GetTextsInput": { + "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByNameInput": { "baseType": null, "isEnum": false, "enumNames": null, @@ -2354,81 +3484,68 @@ "genericArguments": null, "properties": [ { - "name": "CultureName", + "name": "TenantId", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, + "type": "System.Guid?", + "typeSimple": "string?", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "TargetCultureName", + "name": "ContainerName", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": true, - "minLength": null, - "maxLength": null, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - }, - { - "name": "ResourceName", - "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - }, - { - "name": "OnlyNull", - "jsonName": null, - "type": "System.Boolean?", - "typeSimple": "boolean?", - "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 128, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Filter", + "name": "BlobName", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, + "isRequired": true, + "minLength": 0, + "maxLength": 256, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.AspNetCore.Mvc.Localization.LanguageDto": { - "baseType": null, + "LINGYUN.Abp.BlobManagement.Dtos.BlobDto": { + "baseType": "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "CultureName", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -2438,10 +3555,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "UiCultureName", + "name": "FullName", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -2451,23 +3571,29 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DisplayName", + "name": "Type", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "LINGYUN.Abp.BlobManagement.BlobType", + "typeSimple": "enum", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "TwoLetterISOLanguageName", + "name": "ContentType", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -2477,146 +3603,184 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Abp.AspNetCore.Mvc.Localization.ResourceDto": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Name", + "name": "Size", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Int64", + "typeSimple": "number", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DisplayName", + "name": "ExpirationTime", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.DateTime?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Description", + "name": "DownloadCount", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Int64", + "typeSimple": "number", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.AspNetCore.Mvc.Localization.TextDifferenceDto": { - "baseType": null, + "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateBaseDto": { + "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateBaseDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "CultureName", - "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - }, - { - "name": "Key", + "name": "ChunkSize", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": false, + "type": "System.Int64", + "typeSimple": "number", + "isRequired": true, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Value", + "name": "CurrentChunkSize", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": false, + "type": "System.Int64", + "typeSimple": "number", + "isRequired": true, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ResourceName", + "name": "ChunkNumber", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": false, + "type": "System.Int32", + "typeSimple": "number", + "isRequired": true, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "TargetCultureName", + "name": "TotalChunks", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": false, + "type": "System.Int32", + "typeSimple": "number", + "isRequired": true, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateDto": { + "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateBaseDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "TargetValue", + "name": "ContainerId", "jsonName": null, - "type": "System.String", + "type": "System.Guid", "typeSimple": "string", - "isRequired": false, + "isRequired": true, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateWithoutContainerDto": { + "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateBaseDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.AspNetCore.Mvc.Localization.TextDto": { + "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateBaseDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -2624,7 +3788,7 @@ "genericArguments": null, "properties": [ { - "name": "Key", + "name": "CompareMd5", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -2634,87 +3798,108 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Value", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, + "isRequired": true, + "minLength": 0, + "maxLength": 256, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "CultureName", + "name": "ParentId", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Guid?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ResourceName", + "name": "File", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "Volo.Abp.Content.IRemoteStreamContent", + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] - }, - "LINGYUN.Abp.BlobManagement.BlobType": { - "baseType": "System.Enum", - "isEnum": true, - "enumNames": [ - "Folder", - "File" - ], - "enumValues": [ - 0, - 1 ], - "genericArguments": null, - "properties": null + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerCreateDto": { - "baseType": null, + "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateDto": { + "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateBaseDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Name", + "name": "ContainerId", "jsonName": null, - "type": "System.String", + "type": "System.Guid", "typeSimple": "string", "isRequired": true, - "minLength": 0, - "maxLength": 128, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerDto": { - "baseType": "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto", + "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateWithoutContainerDto": { + "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateBaseDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateBaseDto": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, @@ -2725,71 +3910,250 @@ "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, + "isRequired": true, + "minLength": 0, + "maxLength": 256, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ConcurrencyStamp", + "name": "ParentId", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Guid?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobContainerGetPagedListInput": { - "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateDto": { + "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateBaseDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Filter", + "name": "ContainerId", "jsonName": null, - "type": "System.String", + "type": "System.Guid", "typeSimple": "string", - "isRequired": false, + "isRequired": true, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobDownloadByNameInput": { - "baseType": null, + "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateWithoutContainerDto": { + "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateBaseDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListInput": { + "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListInputBase", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "ContainerName", + "name": "ContainerId", "jsonName": null, - "type": "System.String", + "type": "System.Guid", "typeSimple": "string", "isRequired": true, - "minLength": 0, - "maxLength": 128, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListInputBase": { + "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "ParentId", + "jsonName": null, + "type": "System.Guid?", + "typeSimple": "string?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Type", + "jsonName": null, + "type": "LINGYUN.Abp.BlobManagement.BlobType?", + "typeSimple": "enum?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "ContentType", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListWithoutContainerInput": { + "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListInputBase", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileCreateIntegrationDto": { + "baseType": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Overwrite", + "jsonName": null, + "type": "System.Boolean?", + "typeSimple": "boolean?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "File", + "jsonName": null, + "type": "Volo.Abp.Content.IRemoteStreamContent", + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "ContainerName", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 128, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { "name": "BlobName", "jsonName": null, @@ -2801,12 +4165,19 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobDto": { - "baseType": "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto", + "LINGYUN.Abp.SettingManagement.OptionDto": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, @@ -2823,10 +4194,42 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Path", + "name": "Value", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Abp.SettingManagement.SettingDetailsDto": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -2836,23 +4239,29 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Type", + "name": "DisplayName", "jsonName": null, - "type": "LINGYUN.Abp.BlobManagement.BlobType", - "typeSimple": "enum", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ContentType", + "name": "Description", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -2862,141 +4271,162 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Size", + "name": "Value", "jsonName": null, - "type": "System.Int64", - "typeSimple": "number", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ExpirationTime", + "name": "DefaultValue", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DownloadCount", + "name": "IsEncrypted", "jsonName": null, - "type": "System.Int64", - "typeSimple": "number", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateBaseDto": { - "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateBaseDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "ChunkSize", + "name": "ValueType", "jsonName": null, - "type": "System.Int64", - "typeSimple": "number", - "isRequired": true, + "type": "Volo.Abp.Settings.ValueType", + "typeSimple": "enum", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "CurrentChunkSize", + "name": "Slot", "jsonName": null, - "type": "System.Int64", - "typeSimple": "number", - "isRequired": true, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ChunkNumber", + "name": "Options", "jsonName": null, - "type": "System.Int32", - "typeSimple": "number", - "isRequired": true, + "type": "[LINGYUN.Abp.SettingManagement.OptionDto]", + "typeSimple": "[LINGYUN.Abp.SettingManagement.OptionDto]", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "TotalChunks", + "name": "Providers", "jsonName": null, - "type": "System.Int32", - "typeSimple": "number", - "isRequired": true, + "type": "[System.String]", + "typeSimple": "[string]", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateDto": { - "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateBaseDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "ContainerId", + "name": "RequiredFeatures", "jsonName": null, - "type": "System.Guid", - "typeSimple": "string", - "isRequired": true, + "type": "[System.String]", + "typeSimple": "[string]", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "RequiredPermissions", + "jsonName": null, + "type": "[System.String]", + "typeSimple": "[string]", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] - }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateWithoutContainerDto": { - "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileChunkCreateBaseDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateBaseDto": { + "LINGYUN.Abp.SettingManagement.SettingDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -3004,7 +4434,7 @@ "genericArguments": null, "properties": [ { - "name": "CompareMd5", + "name": "DisplayName", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -3014,201 +4444,270 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Name", + "name": "Description", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 256, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - }, - { - "name": "ParentId", - "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "File", + "name": "Details", "jsonName": null, - "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "type": "[LINGYUN.Abp.SettingManagement.SettingDetailsDto]", + "typeSimple": "[LINGYUN.Abp.SettingManagement.SettingDetailsDto]", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateDto": { - "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateBaseDto", + "LINGYUN.Abp.SettingManagement.SettingGroupDto": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "ContainerId", + "name": "DisplayName", "jsonName": null, - "type": "System.Guid", + "type": "System.String", "typeSimple": "string", - "isRequired": true, + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateWithoutContainerDto": { - "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFileCreateBaseDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [] - }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateBaseDto": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Name", + "name": "Description", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 256, + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ParentId", + "name": "Settings", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "[LINGYUN.Abp.SettingManagement.SettingDto]", + "typeSimple": "[LINGYUN.Abp.SettingManagement.SettingDto]", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateDto": { - "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateBaseDto", + "LINGYUN.Abp.SettingManagement.SettingGroupResult": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "ContainerId", + "name": "Items", "jsonName": null, - "type": "System.Guid", - "typeSimple": "string", - "isRequired": true, + "type": "[LINGYUN.Abp.SettingManagement.SettingGroupDto]", + "typeSimple": "[LINGYUN.Abp.SettingManagement.SettingGroupDto]", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateWithoutContainerDto": { - "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobFolderCreateBaseDto", + "LINGYUN.Platform.Datas.DataCreateDto": { + "baseType": "LINGYUN.Platform.Datas.DataCreateOrUpdateDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, - "properties": [] + "properties": [ + { + "name": "ParentId", + "jsonName": null, + "type": "System.Guid?", + "typeSimple": "string?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListInput": { - "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListInputBase", + "LINGYUN.Platform.Datas.DataCreateOrUpdateDto": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "ContainerId", + "name": "Name", "jsonName": null, - "type": "System.Guid", + "type": "System.String", "typeSimple": "string", "isRequired": true, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 30, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "DisplayName", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 128, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Description", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": 0, + "maxLength": 1024, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListInputBase": { - "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "LINGYUN.Platform.Datas.DataDto": { + "baseType": "Volo.Abp.Application.Dtos.EntityDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "ParentId", + "name": "Name", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Type", + "name": "Code", "jsonName": null, - "type": "LINGYUN.Abp.BlobManagement.BlobType?", - "typeSimple": "enum?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ContentType", + "name": "DisplayName", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -3218,54 +4717,95 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true - } - ] - }, - "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListWithoutContainerInput": { - "baseType": "LINGYUN.Abp.BlobManagement.Dtos.BlobGetPagedListInputBase", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [] - }, - "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileCreateIntegrationDto": { - "baseType": "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Overwrite", + "name": "Description", "jsonName": null, - "type": "System.Boolean?", - "typeSimple": "boolean?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "File", + "name": "ParentId", "jsonName": null, - "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "type": "System.Guid?", + "typeSimple": "string?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Items", + "jsonName": null, + "type": "[LINGYUN.Platform.Datas.DataItemDto]", + "typeSimple": "[LINGYUN.Platform.Datas.DataItemDto]", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Abp.BlobManagement.Integration.Dtos.BlobFileGetByNameIntegrationDto": { + "LINGYUN.Platform.Datas.DataItemCreateDto": { + "baseType": "LINGYUN.Platform.Datas.DataItemCreateOrUpdateDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Name", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 30, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Datas.DataItemCreateOrUpdateDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -3273,7 +4813,7 @@ "genericArguments": null, "properties": [ { - "name": "ContainerName", + "name": "DisplayName", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -3283,47 +4823,83 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "BlobName", + "name": "DefaultValue", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, + "isRequired": false, "minLength": 0, - "maxLength": 256, + "maxLength": 128, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Datas.DataCreateDto": { - "baseType": "LINGYUN.Platform.Datas.DataCreateOrUpdateDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "ParentId", + "name": "Description", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": 0, + "maxLength": 1024, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "AllowBeNull", + "jsonName": null, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "ValueType", + "jsonName": null, + "type": "LINGYUN.Platform.Datas.ValueType", + "typeSimple": "enum", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Datas.DataCreateOrUpdateDto": { - "baseType": null, + "LINGYUN.Platform.Datas.DataItemDto": { + "baseType": "Volo.Abp.Application.Dtos.EntityDto", "isEnum": false, "enumNames": null, "enumValues": null, @@ -3334,26 +4910,48 @@ "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 30, + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "DisplayName", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 128, + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "DefaultValue", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Description", @@ -3361,37 +4959,1276 @@ "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": 0, - "maxLength": 1024, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Datas.DataDto": { - "baseType": "Volo.Abp.Application.Dtos.EntityDto", + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "AllowBeNull", + "jsonName": null, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "ValueType", + "jsonName": null, + "type": "LINGYUN.Platform.Datas.ValueType", + "typeSimple": "enum", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Datas.DataItemUpdateDto": { + "baseType": "LINGYUN.Platform.Datas.DataItemCreateOrUpdateDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Datas.DataMoveDto": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "ParentId", + "jsonName": null, + "type": "System.Guid?", + "typeSimple": "string?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Datas.DataUpdateDto": { + "baseType": "LINGYUN.Platform.Datas.DataCreateOrUpdateDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Datas.GetDataListInput": { + "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Filter", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Datas.ValueType": { + "baseType": "System.Enum", + "isEnum": true, + "enumNames": [ + "String", + "Numeic", + "Boolean", + "Date", + "DateTime", + "Array", + "Object" + ], + "enumValues": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ], + "genericArguments": null, + "properties": null, + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Feedbacks.FeedbackAttachmentDto": { + "baseType": "Volo.Abp.Application.Dtos.CreationAuditedEntityDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Name", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Url", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Size", + "jsonName": null, + "type": "System.Int64", + "typeSimple": "number", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Feedbacks.FeedbackAttachmentGetInput": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "FeedbackId", + "jsonName": null, + "type": "System.Guid", + "typeSimple": "string", + "isRequired": true, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Name", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 64, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Feedbacks.FeedbackAttachmentTempFileCreateDto": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Path", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Id", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Feedbacks.FeedbackAttachmentTempFileDto": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Path", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Id", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Size", + "jsonName": null, + "type": "System.Int64", + "typeSimple": "number", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Feedbacks.FeedbackAttachmentUploadInput": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "File", + "jsonName": null, + "type": "Volo.Abp.Content.IRemoteStreamContent", + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "isRequired": true, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Feedbacks.FeedbackCommentDto": { + "baseType": "Volo.Abp.Application.Dtos.AuditedEntityDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Content", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Feedbacks.FeedbackCreateDto": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Content", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 255, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Category", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 64, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Attachments", + "jsonName": null, + "type": "[LINGYUN.Platform.Feedbacks.FeedbackAttachmentTempFileCreateDto]", + "typeSimple": "[LINGYUN.Platform.Feedbacks.FeedbackAttachmentTempFileCreateDto]", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Feedbacks.FeedbackDto": { + "baseType": "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Content", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Category", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Status", + "jsonName": null, + "type": "LINGYUN.Platform.Feedbacks.FeedbackStatus", + "typeSimple": "enum", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Comments", + "jsonName": null, + "type": "[LINGYUN.Platform.Feedbacks.FeedbackCommentDto]", + "typeSimple": "[LINGYUN.Platform.Feedbacks.FeedbackCommentDto]", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Attachments", + "jsonName": null, + "type": "[LINGYUN.Platform.Feedbacks.FeedbackAttachmentDto]", + "typeSimple": "[LINGYUN.Platform.Feedbacks.FeedbackAttachmentDto]", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Feedbacks.FeedbackGetListInput": { + "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Filter", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Category", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Status", + "jsonName": null, + "type": "LINGYUN.Platform.Feedbacks.FeedbackStatus?", + "typeSimple": "enum?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Feedbacks.FeedbackStatus": { + "baseType": "System.Enum", + "isEnum": true, + "enumNames": [ + "Created", + "InProgress", + "Closed", + "Resolved" + ], + "enumValues": [ + 1, + 2, + 3, + 4 + ], + "genericArguments": null, + "properties": null, + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Layouts.GetLayoutListInput": { + "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Filter", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Framework", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": 0, + "maxLength": 64, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Layouts.LayoutCreateDto": { + "baseType": "LINGYUN.Platform.Layouts.LayoutCreateOrUpdateDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "DataId", + "jsonName": null, + "type": "System.Guid", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Framework", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 64, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Layouts.LayoutCreateOrUpdateDto": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Name", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 64, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "DisplayName", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 128, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Description", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": 0, + "maxLength": 255, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Path", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 255, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Redirect", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": 0, + "maxLength": 255, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Layouts.LayoutDto": { + "baseType": "LINGYUN.Platform.Routes.RouteDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Framework", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "DataId", + "jsonName": null, + "type": "System.Guid", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Layouts.LayoutUpdateDto": { + "baseType": "LINGYUN.Platform.Layouts.LayoutCreateOrUpdateDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Menus.GetMenuInput": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Framework", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": 0, + "maxLength": 64, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Menus.MenuCreateDto": { + "baseType": "LINGYUN.Platform.Menus.MenuCreateOrUpdateDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "LayoutId", + "jsonName": null, + "type": "System.Guid", + "typeSimple": "string", + "isRequired": true, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Menus.MenuCreateOrUpdateDto": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "ParentId", + "jsonName": null, + "type": "System.Guid?", + "typeSimple": "string?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Name", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 64, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "DisplayName", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 128, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Description", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": 0, + "maxLength": 255, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Path", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 255, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Redirect", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": 0, + "maxLength": 255, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Component", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 255, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "IsPublic", + "jsonName": null, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Meta", + "jsonName": null, + "type": "{System.String:System.Object}", + "typeSimple": "{string:object}", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Menus.MenuDto": { + "baseType": "LINGYUN.Platform.Routes.RouteDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "Code", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Component", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Framework", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "ParentId", + "jsonName": null, + "type": "System.Guid?", + "typeSimple": "string?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "LayoutId", + "jsonName": null, + "type": "System.Guid", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "IsPublic", + "jsonName": null, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Startup", + "jsonName": null, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Menus.MenuGetAllInput": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Name", + "name": "Framework", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 64, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Code", + "name": "Filter", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -3401,85 +6238,127 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DisplayName", + "name": "Reverse", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Description", + "name": "ParentId", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Guid?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ParentId", + "name": "Sorting", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Items", + "name": "LayoutId", "jsonName": null, - "type": "[LINGYUN.Platform.Datas.DataItemDto]", - "typeSimple": "[LINGYUN.Platform.Datas.DataItemDto]", + "type": "System.Guid?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Datas.DataItemCreateDto": { - "baseType": "LINGYUN.Platform.Datas.DataItemCreateOrUpdateDto", + "LINGYUN.Platform.Menus.MenuGetByRoleInput": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Name", + "name": "Role", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": true, "minLength": 0, - "maxLength": 30, + "maxLength": 80, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Framework", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": 0, + "maxLength": 64, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Datas.DataItemCreateOrUpdateDto": { + "LINGYUN.Platform.Menus.MenuGetByUserInput": { "baseType": null, "isEnum": false, "enumNames": null, @@ -3487,168 +6366,226 @@ "genericArguments": null, "properties": [ { - "name": "DisplayName", + "name": "UserId", "jsonName": null, - "type": "System.String", + "type": "System.Guid", "typeSimple": "string", "isRequired": true, - "minLength": 0, - "maxLength": 128, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DefaultValue", + "name": "Roles", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "[System.String]", + "typeSimple": "[string]", "isRequired": false, - "minLength": 0, - "maxLength": 128, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Description", + "name": "Framework", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, "minLength": 0, - "maxLength": 1024, + "maxLength": 64, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Menus.MenuGetListInput": { + "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "AllowBeNull", + "name": "Framework", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "System.String", + "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 64, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ValueType", + "name": "Filter", "jsonName": null, - "type": "LINGYUN.Platform.Datas.ValueType", - "typeSimple": "enum", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Datas.DataItemDto": { - "baseType": "Volo.Abp.Application.Dtos.EntityDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Name", + "name": "ParentId", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Guid?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DisplayName", + "name": "LayoutId", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Guid?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Menus.MenuUpdateDto": { + "baseType": "LINGYUN.Platform.Menus.MenuCreateOrUpdateDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Menus.RoleMenuInput": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "DefaultValue", + "name": "RoleName", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, + "isRequired": true, + "minLength": 0, + "maxLength": 80, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Description", + "name": "Framework", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 64, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "AllowBeNull", + "name": "StartupMenuId", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "System.Guid?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ValueType", + "name": "MenuIds", "jsonName": null, - "type": "LINGYUN.Platform.Datas.ValueType", - "typeSimple": "enum", - "isRequired": false, + "type": "[System.Guid]", + "typeSimple": "[string]", + "isRequired": true, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] - }, - "LINGYUN.Platform.Datas.DataItemUpdateDto": { - "baseType": "LINGYUN.Platform.Datas.DataItemCreateOrUpdateDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Datas.DataMoveDto": { + "LINGYUN.Platform.Menus.RoleMenuStartupInput": { "baseType": null, "isEnum": false, "enumNames": null, @@ -3656,123 +6593,73 @@ "genericArguments": null, "properties": [ { - "name": "ParentId", + "name": "RoleName", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", - "isRequired": false, - "minLength": null, - "maxLength": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 80, "minimum": null, "maximum": null, "regex": null, - "isNullable": true - } - ] - }, - "LINGYUN.Platform.Datas.DataUpdateDto": { - "baseType": "LINGYUN.Platform.Datas.DataCreateOrUpdateDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [] - }, - "LINGYUN.Platform.Datas.GetDataListInput": { - "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Filter", + "name": "Framework", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 64, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] - }, - "LINGYUN.Platform.Datas.ValueType": { - "baseType": "System.Enum", - "isEnum": true, - "enumNames": [ - "String", - "Numeic", - "Boolean", - "Date", - "DateTime", - "Array", - "Object" - ], - "enumValues": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6 ], - "genericArguments": null, - "properties": null + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Feedbacks.FeedbackAttachmentDto": { - "baseType": "Volo.Abp.Application.Dtos.CreationAuditedEntityDto", + "LINGYUN.Platform.Menus.UserFavoriteMenuCreateDto": { + "baseType": "LINGYUN.Platform.Menus.UserFavoriteMenuCreateOrUpdateDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Name", - "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - }, - { - "name": "Url", + "name": "Framework", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - }, - { - "name": "Size", - "jsonName": null, - "type": "System.Int64", - "typeSimple": "number", - "isRequired": false, - "minLength": null, - "maxLength": null, + "isRequired": true, + "minLength": 0, + "maxLength": 64, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Feedbacks.FeedbackAttachmentGetInput": { + "LINGYUN.Platform.Menus.UserFavoriteMenuCreateOrUpdateDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -3780,7 +6667,7 @@ "genericArguments": null, "properties": [ { - "name": "FeedbackId", + "name": "MenuId", "jsonName": null, "type": "System.Guid", "typeSimple": "string", @@ -3790,69 +6677,76 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Name", + "name": "Color", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, + "isRequired": false, "minLength": 0, - "maxLength": 64, + "maxLength": 30, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Feedbacks.FeedbackAttachmentTempFileCreateDto": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Path", + "name": "AliasName", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 128, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Id", + "name": "Icon", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 512, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Feedbacks.FeedbackAttachmentTempFileDto": { - "baseType": null, + "LINGYUN.Platform.Menus.UserFavoriteMenuDto": { + "baseType": "Volo.Abp.Application.Dtos.AuditedEntityDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Path", + "name": "MenuId", "jsonName": null, - "type": "System.String", + "type": "System.Guid", "typeSimple": "string", "isRequired": false, "minLength": null, @@ -3860,12 +6754,15 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Id", + "name": "UserId", "jsonName": null, - "type": "System.String", + "type": "System.Guid", "typeSimple": "string", "isRequired": false, "minLength": null, @@ -3873,54 +6770,45 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Size", + "name": "AliasName", "jsonName": null, - "type": "System.Int64", - "typeSimple": "number", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Feedbacks.FeedbackAttachmentUploadInput": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "File", + "name": "Color", "jsonName": null, - "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Feedbacks.FeedbackCommentDto": { - "baseType": "Volo.Abp.Application.Dtos.AuditedEntityDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Content", + "name": "Framework", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -3930,67 +6818,45 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Feedbacks.FeedbackCreateDto": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Content", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 255, + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Category", + "name": "DisplayName", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 64, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - }, - { - "name": "Attachments", - "jsonName": null, - "type": "[LINGYUN.Platform.Feedbacks.FeedbackAttachmentTempFileCreateDto]", - "typeSimple": "[LINGYUN.Platform.Feedbacks.FeedbackAttachmentTempFileCreateDto]", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Feedbacks.FeedbackDto": { - "baseType": "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Content", + "name": "Path", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -4000,10 +6866,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Category", + "name": "Icon", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -4013,126 +6882,192 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Menus.UserFavoriteMenuGetListInput": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "Status", + "name": "Framework", "jsonName": null, - "type": "LINGYUN.Platform.Feedbacks.FeedbackStatus", - "typeSimple": "enum", + "type": "System.String", + "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 64, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Menus.UserFavoriteMenuRemoveInput": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "Comments", + "name": "MenuId", "jsonName": null, - "type": "[LINGYUN.Platform.Feedbacks.FeedbackCommentDto]", - "typeSimple": "[LINGYUN.Platform.Feedbacks.FeedbackCommentDto]", - "isRequired": false, + "type": "System.Guid", + "typeSimple": "string", + "isRequired": true, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Menus.UserFavoriteMenuUpdateDto": { + "baseType": "LINGYUN.Platform.Menus.UserFavoriteMenuCreateOrUpdateDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "Attachments", + "name": "ConcurrencyStamp", "jsonName": null, - "type": "[LINGYUN.Platform.Feedbacks.FeedbackAttachmentDto]", - "typeSimple": "[LINGYUN.Platform.Feedbacks.FeedbackAttachmentDto]", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Feedbacks.FeedbackGetListInput": { - "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "LINGYUN.Platform.Menus.UserMenuInput": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Filter", + "name": "UserId", "jsonName": null, - "type": "System.String", + "type": "System.Guid", "typeSimple": "string", - "isRequired": false, + "isRequired": true, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Category", + "name": "Framework", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, + "minLength": 0, + "maxLength": 64, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "StartupMenuId", + "jsonName": null, + "type": "System.Guid?", + "typeSimple": "string?", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Status", + "name": "MenuIds", "jsonName": null, - "type": "LINGYUN.Platform.Feedbacks.FeedbackStatus?", - "typeSimple": "enum?", - "isRequired": false, + "type": "[System.Guid]", + "typeSimple": "[string]", + "isRequired": true, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] - }, - "LINGYUN.Platform.Feedbacks.FeedbackStatus": { - "baseType": "System.Enum", - "isEnum": true, - "enumNames": [ - "Created", - "InProgress", - "Closed", - "Resolved" - ], - "enumValues": [ - 1, - 2, - 3, - 4 ], - "genericArguments": null, - "properties": null + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Layouts.GetLayoutListInput": { - "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "LINGYUN.Platform.Menus.UserMenuStartupInput": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Filter", + "name": "UserId", "jsonName": null, - "type": "System.String", + "type": "System.Guid", "typeSimple": "string", "isRequired": false, "minLength": null, @@ -4140,7 +7075,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Framework", @@ -4153,46 +7091,79 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Layouts.LayoutCreateDto": { - "baseType": "LINGYUN.Platform.Layouts.LayoutCreateOrUpdateDto", + "LINGYUN.Platform.Messages.EmailMessageAttachmentDto": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "DataId", + "name": "Name", "jsonName": null, - "type": "System.Guid", + "type": "System.String", "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, + "isRequired": true, + "minLength": 0, + "maxLength": 256, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Framework", + "name": "BlobName", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": true, "minLength": 0, - "maxLength": 64, + "maxLength": 256, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Size", + "jsonName": null, + "type": "System.Int64", + "typeSimple": "number", + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Layouts.LayoutCreateOrUpdateDto": { + "LINGYUN.Platform.Messages.EmailMessageCreateDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -4200,294 +7171,401 @@ "genericArguments": null, "properties": [ { - "name": "Name", + "name": "To", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": true, "minLength": 0, - "maxLength": 64, + "maxLength": 1024, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DisplayName", + "name": "Content", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": true, - "minLength": 0, - "maxLength": 128, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Description", + "name": "From", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, "minLength": 0, - "maxLength": 255, + "maxLength": 128, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Path", + "name": "Subject", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, + "isRequired": false, "minLength": 0, - "maxLength": 255, + "maxLength": 128, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Redirect", + "name": "IsBodyHtml", + "jsonName": null, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "CC", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, "minLength": 0, - "maxLength": 255, + "maxLength": 1024, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Layouts.LayoutDto": { - "baseType": "LINGYUN.Platform.Routes.RouteDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Framework", + "name": "Normalize", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DataId", + "name": "Priority", "jsonName": null, - "type": "System.Guid", - "typeSimple": "string", + "type": "System.Net.Mail.MailPriority?", + "typeSimple": "enum?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Layouts.LayoutUpdateDto": { - "baseType": "LINGYUN.Platform.Layouts.LayoutCreateOrUpdateDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [] - }, - "LINGYUN.Platform.Menus.GetMenuInput": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Framework", + "name": "BodyTransferEncoding", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Net.Mime.TransferEncoding?", + "typeSimple": "enum?", "isRequired": false, - "minLength": 0, - "maxLength": 64, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Menus.MenuCreateDto": { - "baseType": "LINGYUN.Platform.Menus.MenuCreateOrUpdateDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "LayoutId", + "name": "DeliveryNotificationOptions", "jsonName": null, - "type": "System.Guid", - "typeSimple": "string", - "isRequired": true, + "type": "System.Net.Mail.DeliveryNotificationOptions?", + "typeSimple": "enum?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Attachments", + "jsonName": null, + "type": "[Volo.Abp.Content.IRemoteStreamContent]", + "typeSimple": "[Volo.Abp.Content.IRemoteStreamContent]", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Headers", + "jsonName": null, + "type": "[LINGYUN.Platform.Messages.EmailMessageHeaderDto]", + "typeSimple": "[LINGYUN.Platform.Messages.EmailMessageHeaderDto]", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "ExtraProperties", + "jsonName": null, + "type": "{System.String:System.Object}", + "typeSimple": "{string:object}", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Menus.MenuCreateOrUpdateDto": { - "baseType": null, + "LINGYUN.Platform.Messages.EmailMessageDto": { + "baseType": "LINGYUN.Platform.Messages.MessageDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "ParentId", + "name": "From", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Name", + "name": "Subject", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 64, + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DisplayName", + "name": "IsBodyHtml", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 128, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Description", + "name": "CC", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": 0, - "maxLength": 255, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Path", + "name": "Normalize", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 255, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Redirect", + "name": "Priority", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Net.Mail.MailPriority?", + "typeSimple": "enum?", "isRequired": false, - "minLength": 0, - "maxLength": 255, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Component", + "name": "BodyTransferEncoding", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 255, + "type": "System.Net.Mime.TransferEncoding?", + "typeSimple": "enum?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "DeliveryNotificationOptions", + "jsonName": null, + "type": "System.Net.Mail.DeliveryNotificationOptions?", + "typeSimple": "enum?", + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "IsPublic", + "name": "Attachments", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "[LINGYUN.Platform.Messages.EmailMessageAttachmentDto]", + "typeSimple": "[LINGYUN.Platform.Messages.EmailMessageAttachmentDto]", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Meta", + "name": "Headers", "jsonName": null, - "type": "{System.String:System.Object}", - "typeSimple": "{string:object}", + "type": "[LINGYUN.Platform.Messages.EmailMessageHeaderDto]", + "typeSimple": "[LINGYUN.Platform.Messages.EmailMessageHeaderDto]", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Menus.MenuDto": { - "baseType": "LINGYUN.Platform.Routes.RouteDto", + "LINGYUN.Platform.Messages.EmailMessageGetListInput": { + "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Code", + "name": "Filter", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -4497,10 +7575,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Component", + "name": "EmailAddress", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -4510,10 +7591,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Framework", + "name": "Content", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -4523,25 +7607,31 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ParentId", + "name": "From", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "LayoutId", + "name": "Subject", "jsonName": null, - "type": "System.Guid", + "type": "System.String", "typeSimple": "string", "isRequired": false, "minLength": null, @@ -4549,37 +7639,82 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "IsPublic", + "name": "Status", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "LINGYUN.Platform.Messages.MessageStatus?", + "typeSimple": "enum?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Startup", + "name": "Priority", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "System.Net.Mail.MailPriority?", + "typeSimple": "enum?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "BeginSendTime", + "jsonName": null, + "type": "System.DateTime?", + "typeSimple": "string?", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "EndSendTime", + "jsonName": null, + "type": "System.DateTime?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Menus.MenuGetAllInput": { + "LINGYUN.Platform.Messages.EmailMessageHeaderDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -4587,59 +7722,84 @@ "genericArguments": null, "properties": [ { - "name": "Framework", + "name": "Key", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": false, + "isRequired": true, "minLength": 0, "maxLength": 64, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Filter", + "name": "Value", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, + "isRequired": true, + "minLength": 0, + "maxLength": 128, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Messages.MessageDto": { + "baseType": "Volo.Abp.Application.Dtos.AuditedEntityDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "Reverse", + "name": "UserId", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "System.Guid?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ParentId", + "name": "Sender", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Sorting", + "name": "Provider", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -4649,378 +7809,403 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "LayoutId", + "name": "Receiver", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true - } - ] - }, - "LINGYUN.Platform.Menus.MenuGetByRoleInput": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Role", + "name": "Content", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 80, + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Framework", + "name": "SendTime", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.DateTime?", + "typeSimple": "string?", "isRequired": false, - "minLength": 0, - "maxLength": 64, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Menus.MenuGetByUserInput": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "UserId", + "name": "SendCount", "jsonName": null, - "type": "System.Guid", - "typeSimple": "string", - "isRequired": true, + "type": "System.Int32", + "typeSimple": "number", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Roles", + "name": "Status", "jsonName": null, - "type": "[System.String]", - "typeSimple": "[string]", + "type": "LINGYUN.Platform.Messages.MessageStatus", + "typeSimple": "enum", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Framework", + "name": "Reason", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": 0, - "maxLength": 64, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Menus.MenuGetListInput": { - "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "LINGYUN.Platform.Messages.MessageStatus": { + "baseType": "System.Enum", + "isEnum": true, + "enumNames": [ + "Sent", + "Failed", + "Pending" + ], + "enumValues": [ + 0, + 10, + -1 + ], + "genericArguments": null, + "properties": null, + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Messages.SmsMessageCreateDto": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Framework", + "name": "PhoneNumber", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": false, + "isRequired": true, "minLength": 0, - "maxLength": 64, + "maxLength": 1024, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Filter", + "name": "Text", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - }, - { - "name": "ParentId", - "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", - "isRequired": false, + "isRequired": true, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "LayoutId", + "name": "ExtraProperties", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "{System.String:System.Object}", + "typeSimple": "{string:object}", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Menus.MenuUpdateDto": { - "baseType": "LINGYUN.Platform.Menus.MenuCreateOrUpdateDto", + "LINGYUN.Platform.Messages.SmsMessageDto": { + "baseType": "LINGYUN.Platform.Messages.MessageDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, - "properties": [] + "properties": [], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Menus.RoleMenuInput": { - "baseType": null, + "LINGYUN.Platform.Messages.SmsMessageGetListInput": { + "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "RoleName", - "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 80, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - }, - { - "name": "Framework", + "name": "PhoneNumber", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": 0, - "maxLength": 64, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "StartupMenuId", + "name": "Content", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "MenuIds", + "name": "Status", "jsonName": null, - "type": "[System.Guid]", - "typeSimple": "[string]", - "isRequired": true, + "type": "LINGYUN.Platform.Messages.MessageStatus?", + "typeSimple": "enum?", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Menus.RoleMenuStartupInput": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "RoleName", + "name": "BeginSendTime", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 80, + "type": "System.DateTime?", + "typeSimple": "string?", + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Framework", + "name": "EndSendTime", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.DateTime?", + "typeSimple": "string?", "isRequired": false, - "minLength": 0, - "maxLength": 64, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Menus.UserFavoriteMenuCreateDto": { - "baseType": "LINGYUN.Platform.Menus.UserFavoriteMenuCreateOrUpdateDto", + "LINGYUN.Platform.Packages.PackageBlobDownloadInput": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Framework", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": true, - "minLength": 0, - "maxLength": 64, + "minLength": null, + "maxLength": 255, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Menus.UserFavoriteMenuCreateOrUpdateDto": { - "baseType": null, + "LINGYUN.Platform.Packages.PackageBlobDto": { + "baseType": "Volo.Abp.Application.Dtos.CreationAuditedEntityDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "MenuId", + "name": "Name", "jsonName": null, - "type": "System.Guid", + "type": "System.String", "typeSimple": "string", - "isRequired": true, + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Color", + "name": "Url", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": 0, - "maxLength": 30, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "AliasName", + "name": "Size", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Int64?", + "typeSimple": "number?", "isRequired": false, - "minLength": 0, - "maxLength": 128, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Icon", + "name": "Summary", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": 0, - "maxLength": 512, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Menus.UserFavoriteMenuDto": { - "baseType": "Volo.Abp.Application.Dtos.AuditedEntityDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ - { - "name": "MenuId", - "jsonName": null, - "type": "System.Guid", - "typeSimple": "string", - "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "UserId", + "name": "CreatedAt", "jsonName": null, - "type": "System.Guid", + "type": "System.DateTime", "typeSimple": "string", "isRequired": false, "minLength": null, @@ -5028,23 +8213,29 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "AliasName", + "name": "UpdatedAt", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.DateTime?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Color", + "name": "License", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -5054,10 +8245,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Framework", + "name": "Authors", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -5067,10 +8261,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Name", + "name": "SHA256", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -5080,10 +8277,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DisplayName", + "name": "ContentType", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -5093,37 +8293,50 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Path", + "name": "DownloadCount", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Int32", + "typeSimple": "number", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Icon", + "name": "ExtraProperties", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "{System.String:System.Object}", + "typeSimple": "{string:object}", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Menus.UserFavoriteMenuGetListInput": { + "LINGYUN.Platform.Packages.PackageBlobRemoveDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -5131,21 +8344,28 @@ "genericArguments": null, "properties": [ { - "name": "Framework", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": false, - "minLength": 0, - "maxLength": 64, + "isRequired": true, + "minLength": null, + "maxLength": 255, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Menus.UserFavoriteMenuRemoveInput": { + "LINGYUN.Platform.Packages.PackageBlobUploadDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -5153,187 +8373,201 @@ "genericArguments": null, "properties": [ { - "name": "MenuId", + "name": "Name", "jsonName": null, - "type": "System.Guid", + "type": "System.String", "typeSimple": "string", "isRequired": true, "minLength": null, - "maxLength": null, + "maxLength": 255, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Menus.UserFavoriteMenuUpdateDto": { - "baseType": "LINGYUN.Platform.Menus.UserFavoriteMenuCreateOrUpdateDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "ConcurrencyStamp", + "name": "Size", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Int64?", + "typeSimple": "number?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Menus.UserMenuInput": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "UserId", + "name": "Summary", "jsonName": null, - "type": "System.Guid", + "type": "System.String", "typeSimple": "string", - "isRequired": true, + "isRequired": false, "minLength": null, - "maxLength": null, + "maxLength": 1024, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Framework", + "name": "ContentType", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": 0, - "maxLength": 64, + "minLength": null, + "maxLength": 256, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "StartupMenuId", + "name": "CreatedAt", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "System.DateTime", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "MenuIds", + "name": "UpdatedAt", "jsonName": null, - "type": "[System.Guid]", - "typeSimple": "[string]", - "isRequired": true, + "type": "System.DateTime?", + "typeSimple": "string?", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Menus.UserMenuStartupInput": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "UserId", + "name": "License", "jsonName": null, - "type": "System.Guid", + "type": "System.String", "typeSimple": "string", "isRequired": false, "minLength": null, - "maxLength": null, + "maxLength": 1024, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Framework", + "name": "Authors", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": 0, - "maxLength": 64, + "minLength": null, + "maxLength": 100, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Messages.EmailMessageAttachmentDto": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Name", + "name": "File", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "Volo.Abp.Content.IRemoteStreamContent", + "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", "isRequired": true, - "minLength": 0, - "maxLength": 256, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Packages.PackageCreateDto": { + "baseType": "LINGYUN.Platform.Packages.PackageCreateOrUpdateDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "BlobName", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": true, - "minLength": 0, - "maxLength": 256, + "minLength": null, + "maxLength": 255, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Size", + "name": "Version", "jsonName": null, - "type": "System.Int64", - "typeSimple": "number", - "isRequired": false, + "type": "System.String", + "typeSimple": "string", + "isRequired": true, "minLength": null, - "maxLength": null, + "maxLength": 30, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Messages.EmailMessageCreateDto": { + "LINGYUN.Platform.Packages.PackageCreateOrUpdateDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -5341,428 +8575,633 @@ "genericArguments": null, "properties": [ { - "name": "To", + "name": "Note", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": true, - "minLength": 0, + "minLength": null, "maxLength": 1024, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Content", + "name": "Description", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, + "isRequired": false, "minLength": null, - "maxLength": null, + "maxLength": 255, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "From", + "name": "ForceUpdate", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, - "minLength": 0, - "maxLength": 128, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Subject", + "name": "Authors", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": 0, - "maxLength": 128, + "minLength": null, + "maxLength": 100, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "IsBodyHtml", + "name": "Level", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "LINGYUN.Platform.Packages.PackageLevel", + "typeSimple": "enum", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Packages.PackageDto": { + "baseType": "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "ConcurrencyStamp", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "CC", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": 0, - "maxLength": 1024, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Normalize", + "name": "Note", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Priority", + "name": "Version", "jsonName": null, - "type": "System.Net.Mail.MailPriority?", - "typeSimple": "enum?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "BodyTransferEncoding", + "name": "Description", "jsonName": null, - "type": "System.Net.Mime.TransferEncoding?", - "typeSimple": "enum?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DeliveryNotificationOptions", + "name": "ForceUpdate", "jsonName": null, - "type": "System.Net.Mail.DeliveryNotificationOptions?", - "typeSimple": "enum?", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Attachments", + "name": "Authors", "jsonName": null, - "type": "[Volo.Abp.Content.IRemoteStreamContent]", - "typeSimple": "[Volo.Abp.Content.IRemoteStreamContent]", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Headers", + "name": "Level", "jsonName": null, - "type": "[LINGYUN.Platform.Messages.EmailMessageHeaderDto]", - "typeSimple": "[LINGYUN.Platform.Messages.EmailMessageHeaderDto]", + "type": "LINGYUN.Platform.Packages.PackageLevel", + "typeSimple": "enum", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ExtraProperties", + "name": "Blobs", "jsonName": null, - "type": "{System.String:System.Object}", - "typeSimple": "{string:object}", + "type": "[LINGYUN.Platform.Packages.PackageBlobDto]", + "typeSimple": "[LINGYUN.Platform.Packages.PackageBlobDto]", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Messages.EmailMessageDto": { - "baseType": "LINGYUN.Platform.Messages.MessageDto", + "LINGYUN.Platform.Packages.PackageGetLatestInput": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "From", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": false, + "isRequired": true, "minLength": null, - "maxLength": null, + "maxLength": 255, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Subject", + "name": "Version", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, "minLength": null, - "maxLength": null, + "maxLength": 30, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Packages.PackageGetPagedListInput": { + "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "IsBodyHtml", + "name": "Filter", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "CC", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, "minLength": null, - "maxLength": null, + "maxLength": 255, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Normalize", + "name": "Note", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, - "maxLength": null, + "maxLength": 1024, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Priority", + "name": "Version", "jsonName": null, - "type": "System.Net.Mail.MailPriority?", - "typeSimple": "enum?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, - "maxLength": null, + "maxLength": 30, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "BodyTransferEncoding", + "name": "Description", "jsonName": null, - "type": "System.Net.Mime.TransferEncoding?", - "typeSimple": "enum?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, - "maxLength": null, + "maxLength": 255, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DeliveryNotificationOptions", + "name": "ForceUpdate", "jsonName": null, - "type": "System.Net.Mail.DeliveryNotificationOptions?", - "typeSimple": "enum?", + "type": "System.Boolean?", + "typeSimple": "boolean?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Attachments", + "name": "Authors", "jsonName": null, - "type": "[LINGYUN.Platform.Messages.EmailMessageAttachmentDto]", - "typeSimple": "[LINGYUN.Platform.Messages.EmailMessageAttachmentDto]", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, - "maxLength": null, + "maxLength": 100, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Packages.PackageLevel": { + "baseType": "System.Enum", + "isEnum": true, + "enumNames": [ + "Resource", + "Full", + "None" + ], + "enumValues": [ + 0, + 1, + -1 + ], + "genericArguments": null, + "properties": null, + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Packages.PackageUpdateDto": { + "baseType": "LINGYUN.Platform.Packages.PackageCreateOrUpdateDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "Headers", + "name": "ConcurrencyStamp", "jsonName": null, - "type": "[LINGYUN.Platform.Messages.EmailMessageHeaderDto]", - "typeSimple": "[LINGYUN.Platform.Messages.EmailMessageHeaderDto]", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Messages.EmailMessageGetListInput": { - "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", + "LINGYUN.Platform.Portal.EnterpriseCreateDto": { + "baseType": "LINGYUN.Platform.Portal.EnterpriseCreateOrUpdateDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Filter", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", + "isRequired": true, + "minLength": 0, + "maxLength": 255, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Portal.EnterpriseCreateOrUpdateDto": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "TenantId", + "jsonName": null, + "type": "System.Guid?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "EmailAddress", + "name": "EnglishName", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 512, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Content", + "name": "Logo", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 512, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "From", + "name": "Address", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 255, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Subject", + "name": "LegalMan", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 60, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Status", + "name": "TaxCode", "jsonName": null, - "type": "LINGYUN.Platform.Messages.MessageStatus?", - "typeSimple": "enum?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 40, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Priority", + "name": "OrganizationCode", "jsonName": null, - "type": "System.Net.Mail.MailPriority?", - "typeSimple": "enum?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 16, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "BeginSendTime", + "name": "RegistrationCode", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, - "minLength": null, - "maxLength": null, + "minLength": 0, + "maxLength": 30, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "EndSendTime", + "name": "RegistrationDate", "jsonName": null, "type": "System.DateTime?", "typeSimple": "string?", @@ -5772,54 +9211,42 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true - } - ] - }, - "LINGYUN.Platform.Messages.EmailMessageHeaderDto": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ - { - "name": "Key", - "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 64, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Value", + "name": "ExpirationDate", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 128, + "type": "System.DateTime?", + "typeSimple": "string?", + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Messages.MessageDto": { - "baseType": "Volo.Abp.Application.Dtos.AuditedEntityDto", + "LINGYUN.Platform.Portal.EnterpriseDto": { + "baseType": "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "UserId", + "name": "TenantId", "jsonName": null, "type": "System.Guid?", "typeSimple": "string?", @@ -5829,10 +9256,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Sender", + "name": "Name", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -5842,10 +9272,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Provider", + "name": "EnglishName", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -5855,10 +9288,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Receiver", + "name": "Logo", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -5868,10 +9304,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Content", + "name": "Address", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -5881,49 +9320,61 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "SendTime", + "name": "LegalMan", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "SendCount", + "name": "TaxCode", "jsonName": null, - "type": "System.Int32", - "typeSimple": "number", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Status", + "name": "OrganizationCode", "jsonName": null, - "type": "LINGYUN.Platform.Messages.MessageStatus", - "typeSimple": "enum", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Reason", + "name": "RegistrationCode", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -5933,83 +9384,66 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Messages.MessageStatus": { - "baseType": "System.Enum", - "isEnum": true, - "enumNames": [ - "Sent", - "Failed", - "Pending" - ], - "enumValues": [ - 0, - 10, - -1 - ], - "genericArguments": null, - "properties": null - }, - "LINGYUN.Platform.Messages.SmsMessageCreateDto": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "PhoneNumber", + "name": "RegistrationDate", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 1024, + "type": "System.DateTime?", + "typeSimple": "string?", + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Text", + "name": "ExpirationDate", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, + "type": "System.DateTime?", + "typeSimple": "string?", + "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ExtraProperties", + "name": "ConcurrencyStamp", "jsonName": null, - "type": "{System.String:System.Object}", - "typeSimple": "{string:object}", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] - }, - "LINGYUN.Platform.Messages.SmsMessageDto": { - "baseType": "LINGYUN.Platform.Messages.MessageDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Messages.SmsMessageGetListInput": { + "LINGYUN.Platform.Portal.EnterpriseGetListInput": { "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", "isEnum": false, "enumNames": null, @@ -6017,7 +9451,7 @@ "genericArguments": null, "properties": [ { - "name": "PhoneNumber", + "name": "Filter", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -6027,36 +9461,45 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Content", + "name": "BeginRegistrationDate", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.DateTime?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Status", + "name": "EndRegistrationDate", "jsonName": null, - "type": "LINGYUN.Platform.Messages.MessageStatus?", - "typeSimple": "enum?", + "type": "System.DateTime?", + "typeSimple": "string?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "BeginSendTime", + "name": "BeginExpirationDate", "jsonName": null, "type": "System.DateTime?", "typeSimple": "string?", @@ -6066,10 +9509,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "EndSendTime", + "name": "EndExpirationDate", "jsonName": null, "type": "System.DateTime?", "typeSimple": "string?", @@ -6079,80 +9525,55 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true - } - ] - }, - "LINGYUN.Platform.Packages.PackageBlobDownloadInput": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ - { - "name": "Name", - "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, - "minLength": null, - "maxLength": 255, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Packages.PackageBlobDto": { - "baseType": "Volo.Abp.Application.Dtos.CreationAuditedEntityDto", + "LINGYUN.Platform.Portal.EnterpriseUpdateDto": { + "baseType": "LINGYUN.Platform.Portal.EnterpriseCreateOrUpdateDto", "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "Name", - "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - }, - { - "name": "Url", - "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": false, - "minLength": null, - "maxLength": null, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - }, - { - "name": "Size", + "name": "ConcurrencyStamp", "jsonName": null, - "type": "System.Int64?", - "typeSimple": "number?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true - }, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Routes.RouteDto": { + "baseType": "Volo.Abp.Application.Dtos.EntityDto", + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "Summary", + "name": "Path", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -6162,12 +9583,15 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "CreatedAt", + "name": "Name", "jsonName": null, - "type": "System.DateTime", + "type": "System.String", "typeSimple": "string", "isRequired": false, "minLength": null, @@ -6175,23 +9599,29 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "UpdatedAt", + "name": "DisplayName", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "License", + "name": "Description", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -6201,10 +9631,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Authors", + "name": "Redirect", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -6214,85 +9647,111 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "SHA256", + "name": "Meta", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "{System.String:System.Object}", + "typeSimple": "{string:object}", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Theme.VueVbenAdmin.BeforeMiniStateDto": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "ContentType", + "name": "MenuCollapsed", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean?", + "typeSimple": "boolean?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "DownloadCount", + "name": "MenuSplit", "jsonName": null, - "type": "System.Int32", - "typeSimple": "number", + "type": "System.Boolean?", + "typeSimple": "boolean?", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ExtraProperties", + "name": "MenuMode", "jsonName": null, - "type": "{System.String:System.Object}", - "typeSimple": "{string:object}", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Packages.PackageBlobRemoveDto": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Name", + "name": "MenuType", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, + "isRequired": false, "minLength": null, - "maxLength": 255, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Packages.PackageBlobUploadDto": { + "LINGYUN.Platform.Theme.VueVbenAdmin.HeaderSettingDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -6300,160 +9759,156 @@ "genericArguments": null, "properties": [ { - "name": "Name", + "name": "BgColor", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, + "isRequired": false, "minLength": null, - "maxLength": 255, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Size", + "name": "Fixed", "jsonName": null, - "type": "System.Int64?", - "typeSimple": "number?", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Summary", + "name": "Show", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, - "maxLength": 1024, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ContentType", + "name": "Theme", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, "minLength": null, - "maxLength": 256, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "CreatedAt", + "name": "ShowFullScreen", "jsonName": null, - "type": "System.DateTime", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "UpdatedAt", + "name": "UseLockPage", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "License", + "name": "ShowDoc", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, - "maxLength": 1024, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Authors", + "name": "ShowNotice", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, - "maxLength": 100, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false - }, - { - "name": "File", - "jsonName": null, - "type": "Volo.Abp.Content.IRemoteStreamContent", - "typeSimple": "Volo.Abp.Content.IRemoteStreamContent", - "isRequired": true, - "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Packages.PackageCreateDto": { - "baseType": "LINGYUN.Platform.Packages.PackageCreateOrUpdateDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ - { - "name": "Name", - "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, - "minLength": null, - "maxLength": 255, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Version", + "name": "ShowSearch", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, "minLength": null, - "maxLength": 30, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Packages.PackageCreateOrUpdateDto": { + "LINGYUN.Platform.Theme.VueVbenAdmin.MenuSettingDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -6461,33 +9916,39 @@ "genericArguments": null, "properties": [ { - "name": "Note", + "name": "BgColor", "jsonName": null, "type": "System.String", "typeSimple": "string", - "isRequired": true, + "isRequired": false, "minLength": null, - "maxLength": 1024, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Description", + "name": "Fixed", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, - "maxLength": 255, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ForceUpdate", + "name": "Collapsed", "jsonName": null, "type": "System.Boolean", "typeSimple": "boolean", @@ -6497,84 +9958,93 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Authors", + "name": "CanDrag", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, - "maxLength": 100, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Level", + "name": "Show", "jsonName": null, - "type": "LINGYUN.Platform.Packages.PackageLevel", - "typeSimple": "enum", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Packages.PackageDto": { - "baseType": "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "ConcurrencyStamp", + "name": "Hidden", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Name", + "name": "Split", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Note", + "name": "MenuWidth", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Int32", + "typeSimple": "number", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Version", + "name": "Mode", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -6584,10 +10054,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Description", + "name": "Type", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -6597,23 +10070,29 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ForceUpdate", + "name": "Theme", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Authors", + "name": "TopMenuAlign", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -6623,232 +10102,223 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Level", + "name": "Trigger", "jsonName": null, - "type": "LINGYUN.Platform.Packages.PackageLevel", - "typeSimple": "enum", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Blobs", + "name": "Accordion", "jsonName": null, - "type": "[LINGYUN.Platform.Packages.PackageBlobDto]", - "typeSimple": "[LINGYUN.Platform.Packages.PackageBlobDto]", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Packages.PackageGetLatestInput": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ - { - "name": "Name", - "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, - "minLength": null, - "maxLength": 255, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Version", + "name": "CloseMixSidebarOnChange", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, - "maxLength": 30, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Packages.PackageGetPagedListInput": { - "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Filter", + "name": "CollapsedShowTitle", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Name", + "name": "MixSideTrigger", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, "minLength": null, - "maxLength": 255, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Note", + "name": "MixSideFixed", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, - "maxLength": 1024, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Theme.VueVbenAdmin.MultiTabsSettingDto": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "Version", + "name": "Cache", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, - "maxLength": 30, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Description", + "name": "Show", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, - "maxLength": 255, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ForceUpdate", + "name": "ShowQuick", "jsonName": null, - "type": "System.Boolean?", - "typeSimple": "boolean?", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Authors", + "name": "CanDrag", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, - "maxLength": 100, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Packages.PackageLevel": { - "baseType": "System.Enum", - "isEnum": true, - "enumNames": [ - "Resource", - "Full", - "None" - ], - "enumValues": [ - 0, - 1, - -1 - ], - "genericArguments": null, - "properties": null - }, - "LINGYUN.Platform.Packages.PackageUpdateDto": { - "baseType": "LINGYUN.Platform.Packages.PackageCreateOrUpdateDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "ConcurrencyStamp", + "name": "ShowRedo", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Portal.EnterpriseCreateDto": { - "baseType": "LINGYUN.Platform.Portal.EnterpriseCreateOrUpdateDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Name", + "name": "ShowFold", "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": true, - "minLength": 0, - "maxLength": 255, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Portal.EnterpriseCreateOrUpdateDto": { + "LINGYUN.Platform.Theme.VueVbenAdmin.ProjectConfigDto": { "baseType": null, "isEnum": false, "enumNames": null, @@ -6856,159 +10326,167 @@ "genericArguments": null, "properties": [ { - "name": "TenantId", + "name": "PermissionCacheType", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "System.Int32", + "typeSimple": "number", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true - }, - { - "name": "EnglishName", - "jsonName": null, - "type": "System.String", - "typeSimple": "string", - "isRequired": false, - "minLength": 0, - "maxLength": 512, - "minimum": null, - "maximum": null, - "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Logo", + "name": "ShowSettingButton", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, - "minLength": 0, - "maxLength": 512, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Address", + "name": "ShowDarkModeToggle", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, - "minLength": 0, - "maxLength": 255, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "LegalMan", + "name": "SettingButtonPosition", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": 0, - "maxLength": 60, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "TaxCode", + "name": "PermissionMode", "jsonName": null, "type": "System.String", "typeSimple": "string", "isRequired": false, - "minLength": 0, - "maxLength": 40, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "OrganizationCode", + "name": "SessionTimeoutProcessing", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Int32", + "typeSimple": "number", "isRequired": false, - "minLength": 0, - "maxLength": 16, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "RegistrationCode", + "name": "GrayMode", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, - "minLength": 0, - "maxLength": 30, + "minLength": null, + "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "RegistrationDate", + "name": "ColorWeak", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ExpirationDate", + "name": "ThemeColor", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true - } - ] - }, - "LINGYUN.Platform.Portal.EnterpriseDto": { - "baseType": "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "TenantId", + "name": "FullContent", "jsonName": null, - "type": "System.Guid?", - "typeSimple": "string?", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Name", + "name": "ContentMode", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -7018,223 +10496,266 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "EnglishName", + "name": "ShowLogo", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Logo", + "name": "ShowFooter", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Address", + "name": "HeaderSetting", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "LINGYUN.Platform.Theme.VueVbenAdmin.HeaderSettingDto", + "typeSimple": "LINGYUN.Platform.Theme.VueVbenAdmin.HeaderSettingDto", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "LegalMan", + "name": "MenuSetting", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "LINGYUN.Platform.Theme.VueVbenAdmin.MenuSettingDto", + "typeSimple": "LINGYUN.Platform.Theme.VueVbenAdmin.MenuSettingDto", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "TaxCode", + "name": "MultiTabsSetting", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "LINGYUN.Platform.Theme.VueVbenAdmin.MultiTabsSettingDto", + "typeSimple": "LINGYUN.Platform.Theme.VueVbenAdmin.MultiTabsSettingDto", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "OrganizationCode", + "name": "TransitionSetting", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "LINGYUN.Platform.Theme.VueVbenAdmin.TransitionSettingDto", + "typeSimple": "LINGYUN.Platform.Theme.VueVbenAdmin.TransitionSettingDto", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "RegistrationCode", + "name": "OpenKeepAlive", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "RegistrationDate", + "name": "LockTime", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.Int32", + "typeSimple": "number", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ExpirationDate", + "name": "ShowBreadCrumb", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ConcurrencyStamp", + "name": "ShowBreadCrumbIcon", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Portal.EnterpriseGetListInput": { - "baseType": "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Filter", + "name": "UseErrorHandle", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "BeginRegistrationDate", + "name": "UseOpenBackTop", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "EndRegistrationDate", + "name": "CanEmbedIFramePage", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "BeginExpirationDate", + "name": "CloseMessageOnSwitch", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "EndExpirationDate", + "name": "RemoveAllHttpPending", "jsonName": null, - "type": "System.DateTime?", - "typeSimple": "string?", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, - "LINGYUN.Platform.Portal.EnterpriseUpdateDto": { - "baseType": "LINGYUN.Platform.Portal.EnterpriseCreateOrUpdateDto", + "LINGYUN.Platform.Theme.VueVbenAdmin.ThemeSettingDto": { + "baseType": null, "isEnum": false, "enumNames": null, "enumValues": null, "genericArguments": null, "properties": [ { - "name": "ConcurrencyStamp", + "name": "DarkMode", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -7244,58 +10765,74 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false - } - ] - }, - "LINGYUN.Platform.Routes.RouteDto": { - "baseType": "Volo.Abp.Application.Dtos.EntityDto", - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "Path", + "name": "ProjectConfig", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "LINGYUN.Platform.Theme.VueVbenAdmin.ProjectConfigDto", + "typeSimple": "LINGYUN.Platform.Theme.VueVbenAdmin.ProjectConfigDto", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Name", + "name": "BeforeMiniInfo", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "LINGYUN.Platform.Theme.VueVbenAdmin.BeforeMiniStateDto", + "typeSimple": "LINGYUN.Platform.Theme.VueVbenAdmin.BeforeMiniStateDto", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false - }, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "LINGYUN.Platform.Theme.VueVbenAdmin.TransitionSettingDto": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ { - "name": "DisplayName", + "name": "Enable", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Description", + "name": "BasicTransition", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -7305,35 +10842,48 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Redirect", + "name": "OpenPageLoading", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Meta", + "name": "OpenNProgress", "jsonName": null, - "type": "{System.String:System.Object}", - "typeSimple": "{string:object}", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "System.Net.Mail.DeliveryNotificationOptions": { "baseType": "System.Enum", @@ -7353,7 +10903,11 @@ 134217728 ], "genericArguments": null, - "properties": null + "properties": null, + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "System.Net.Mail.MailPriority": { "baseType": "System.Enum", @@ -7369,7 +10923,11 @@ 2 ], "genericArguments": null, - "properties": null + "properties": null, + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "System.Net.Mime.TransferEncoding": { "baseType": "System.Enum", @@ -7389,7 +10947,11 @@ -1 ], "genericArguments": null, - "properties": null + "properties": null, + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "System.Nullable": { "baseType": "System.ValueType", @@ -7411,7 +10973,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Value", @@ -7424,9 +10989,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Application.Dtos.AuditedEntityDto": { "baseType": "Volo.Abp.Application.Dtos.CreationAuditedEntityDto", @@ -7448,7 +11020,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "LastModifierId", @@ -7461,9 +11036,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Application.Dtos.CreationAuditedEntityDto": { "baseType": "Volo.Abp.Application.Dtos.EntityDto", @@ -7485,7 +11067,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "CreatorId", @@ -7498,9 +11083,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Application.Dtos.EntityDto": { "baseType": null, @@ -7508,7 +11100,11 @@ "enumNames": null, "enumValues": null, "genericArguments": null, - "properties": [] + "properties": [], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Application.Dtos.EntityDto": { "baseType": "Volo.Abp.Application.Dtos.EntityDto", @@ -7530,9 +11126,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Application.Dtos.ExtensibleAuditedEntityDto": { "baseType": "Volo.Abp.Application.Dtos.ExtensibleCreationAuditedEntityDto", @@ -7554,7 +11157,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "LastModifierId", @@ -7567,9 +11173,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Application.Dtos.ExtensibleCreationAuditedEntityDto": { "baseType": "Volo.Abp.Application.Dtos.ExtensibleEntityDto", @@ -7591,7 +11204,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "CreatorId", @@ -7604,9 +11220,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Application.Dtos.ExtensibleEntityDto": { "baseType": "Volo.Abp.ObjectExtending.ExtensibleObject", @@ -7628,9 +11251,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Application.Dtos.LimitedResultRequestDto": { "baseType": null, @@ -7650,9 +11280,16 @@ "minimum": "1", "maximum": "2147483647", "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Application.Dtos.ListResultDto": { "baseType": null, @@ -7674,9 +11311,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Application.Dtos.PagedAndSortedResultRequestDto": { "baseType": "Volo.Abp.Application.Dtos.PagedResultRequestDto", @@ -7696,9 +11340,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Application.Dtos.PagedResultDto": { "baseType": "Volo.Abp.Application.Dtos.ListResultDto", @@ -7720,9 +11371,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Application.Dtos.PagedResultRequestDto": { "baseType": "Volo.Abp.Application.Dtos.LimitedResultRequestDto", @@ -7742,9 +11400,16 @@ "minimum": "0", "maximum": "2147483647", "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto": { "baseType": null, @@ -7764,9 +11429,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto": { "baseType": null, @@ -7786,7 +11458,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Auth", @@ -7799,7 +11474,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Setting", @@ -7812,7 +11490,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "CurrentUser", @@ -7825,7 +11506,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Features", @@ -7838,7 +11522,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "GlobalFeatures", @@ -7851,7 +11538,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "MultiTenancy", @@ -7864,7 +11554,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "CurrentTenant", @@ -7877,7 +11570,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Timing", @@ -7890,7 +11586,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Clock", @@ -7903,7 +11602,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "ObjectExtensions", @@ -7916,7 +11618,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "ExtraProperties", @@ -7929,9 +11634,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions": { "baseType": null, @@ -7951,9 +11663,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto": { "baseType": null, @@ -7973,9 +11692,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto": { "baseType": null, @@ -7995,9 +11721,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto": { "baseType": null, @@ -8017,7 +11750,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Resources", @@ -8030,7 +11766,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Languages", @@ -8043,7 +11782,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "CurrentCulture", @@ -8056,7 +11798,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "DefaultResourceName", @@ -8069,7 +11814,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "LanguagesMap", @@ -8082,7 +11830,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "LanguageFilesMap", @@ -8095,9 +11846,32 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "UseRouteBasedCulture", + "jsonName": null, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto": { "baseType": null, @@ -8117,7 +11891,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "CurrentCulture", @@ -8130,9 +11907,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto": { "baseType": null, @@ -8152,7 +11936,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "OnlyDynamics", @@ -8165,9 +11952,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto": { "baseType": null, @@ -8187,7 +11981,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "BaseResources", @@ -8200,9 +11997,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto": { "baseType": null, @@ -8222,9 +12026,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto": { "baseType": null, @@ -8244,9 +12055,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto": { "baseType": null, @@ -8266,7 +12084,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "EnglishName", @@ -8279,7 +12100,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "ThreeLetterIsoLanguageName", @@ -8292,7 +12116,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "TwoLetterIsoLanguageName", @@ -8305,7 +12132,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "IsRightToLeft", @@ -8318,7 +12148,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "CultureName", @@ -8331,7 +12164,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Name", @@ -8344,7 +12180,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "NativeName", @@ -8357,7 +12196,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "DateTimeFormat", @@ -8370,9 +12212,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto": { "baseType": null, @@ -8392,7 +12241,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Id", @@ -8405,7 +12257,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "TenantId", @@ -8418,7 +12273,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "ImpersonatorUserId", @@ -8431,7 +12289,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "ImpersonatorTenantId", @@ -8444,7 +12305,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "ImpersonatorUserName", @@ -8457,7 +12321,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "ImpersonatorTenantName", @@ -8470,7 +12337,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "UserName", @@ -8483,7 +12353,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Name", @@ -8496,7 +12369,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "SurName", @@ -8509,7 +12385,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Email", @@ -8522,7 +12401,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "EmailVerified", @@ -8535,7 +12417,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "PhoneNumber", @@ -8548,7 +12433,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "PhoneNumberVerified", @@ -8561,7 +12449,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Roles", @@ -8574,7 +12465,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "SessionId", @@ -8587,9 +12481,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto": { "baseType": null, @@ -8609,7 +12510,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "DateTimeFormatLong", @@ -8622,7 +12526,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "ShortDatePattern", @@ -8635,7 +12542,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "FullDateTimePattern", @@ -8648,7 +12558,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "DateSeparator", @@ -8661,7 +12574,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "ShortTimePattern", @@ -8674,7 +12590,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "LongTimePattern", @@ -8687,9 +12606,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone": { "baseType": null, @@ -8709,9 +12635,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto": { "baseType": null, @@ -8731,7 +12664,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Configuration", @@ -8744,9 +12680,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto": { "baseType": null, @@ -8766,7 +12709,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "LocalizationResource", @@ -8779,9 +12725,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto": { "baseType": null, @@ -8801,7 +12754,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Value", @@ -8814,9 +12770,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto": { "baseType": null, @@ -8836,9 +12799,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto": { "baseType": null, @@ -8858,7 +12828,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "OnCreate", @@ -8871,7 +12844,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "OnUpdate", @@ -8884,9 +12860,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto": { "baseType": null, @@ -8906,9 +12889,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto": { "baseType": null, @@ -8928,9 +12918,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto": { "baseType": null, @@ -8950,7 +12947,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Config", @@ -8963,9 +12963,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto": { "baseType": null, @@ -8985,7 +12992,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "TypeSimple", @@ -8998,7 +13008,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "DisplayName", @@ -9011,7 +13024,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Api", @@ -9024,7 +13040,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Ui", @@ -9037,7 +13056,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Policy", @@ -9050,7 +13072,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Attributes", @@ -9063,7 +13088,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Configuration", @@ -9076,7 +13104,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "DefaultValue", @@ -9089,9 +13120,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyFeaturePolicyDto": { "baseType": null, @@ -9111,7 +13149,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "RequiresAll", @@ -9124,9 +13165,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyGlobalFeaturePolicyDto": { "baseType": null, @@ -9146,7 +13194,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "RequiresAll", @@ -9159,9 +13210,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyPermissionPolicyDto": { "baseType": null, @@ -9181,7 +13239,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "RequiresAll", @@ -9194,9 +13255,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyPolicyDto": { "baseType": null, @@ -9216,7 +13284,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Features", @@ -9229,7 +13300,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Permissions", @@ -9242,9 +13316,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto": { "baseType": null, @@ -9264,7 +13345,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "OnCreateForm", @@ -9277,7 +13361,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "OnEditForm", @@ -9290,7 +13377,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Lookup", @@ -9303,9 +13393,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto": { "baseType": null, @@ -9325,9 +13422,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto": { "baseType": null, @@ -9347,7 +13451,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "ResultListPropertyName", @@ -9360,7 +13467,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "DisplayPropertyName", @@ -9373,7 +13483,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "ValuePropertyName", @@ -9386,7 +13499,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "FilterParamName", @@ -9399,9 +13515,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto": { "baseType": null, @@ -9421,9 +13544,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto": { "baseType": null, @@ -9443,7 +13573,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Resource", @@ -9456,9 +13589,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto": { "baseType": null, @@ -9478,7 +13618,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Configuration", @@ -9491,9 +13634,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto": { "baseType": null, @@ -9513,7 +13663,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Enums", @@ -9526,9 +13679,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone": { "baseType": null, @@ -9548,7 +13708,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Windows", @@ -9561,9 +13724,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto": { "baseType": null, @@ -9583,9 +13753,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone": { "baseType": null, @@ -9605,9 +13782,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto": { "baseType": null, @@ -9627,7 +13811,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Name", @@ -9640,7 +13827,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "IsAvailable", @@ -9653,9 +13843,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto": { "baseType": null, @@ -9675,7 +13872,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "UserSharingStrategy", @@ -9688,9 +13888,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Content.IRemoteStreamContent": { "baseType": null, @@ -9710,7 +13917,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "ContentType", @@ -9723,7 +13933,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "ContentLength", @@ -9736,9 +13949,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Http.Modeling.ActionApiDescriptionModel": { "baseType": null, @@ -9758,7 +13978,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Name", @@ -9771,7 +13994,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "HttpMethod", @@ -9784,7 +14010,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Url", @@ -9797,7 +14026,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "SupportedVersions", @@ -9810,7 +14042,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "ParametersOnMethod", @@ -9823,7 +14058,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Parameters", @@ -9836,7 +14074,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "ReturnValue", @@ -9849,7 +14090,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "AllowAnonymous", @@ -9862,7 +14106,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "AuthorizeDatas", @@ -9875,7 +14122,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "ImplementFrom", @@ -9888,9 +14138,80 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Summary", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Remarks", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Description", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "DisplayName", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel": { "baseType": null, @@ -9910,7 +14231,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Types", @@ -9923,9 +14247,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Http.Modeling.ApplicationApiDescriptionModelRequestDto": { "baseType": null, @@ -9945,9 +14276,32 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "IncludeDescriptions", + "jsonName": null, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Http.Modeling.AuthorizeDataApiDescriptionModel": { "baseType": null, @@ -9967,32 +14321,106 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Roles", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + } + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "Volo.Abp.Http.Modeling.ControllerApiDescriptionModel": { + "baseType": null, + "isEnum": false, + "enumNames": null, + "enumValues": null, + "genericArguments": null, + "properties": [ + { + "name": "ControllerName", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "ControllerGroupName", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "IsRemoteService", + "jsonName": null, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Roles", + "name": "IsIntegrationService", "jsonName": null, - "type": "System.String", - "typeSimple": "string", + "type": "System.Boolean", + "typeSimple": "boolean", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": true - } - ] - }, - "Volo.Abp.Http.Modeling.ControllerApiDescriptionModel": { - "baseType": null, - "isEnum": false, - "enumNames": null, - "enumValues": null, - "genericArguments": null, - "properties": [ + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, { - "name": "ControllerName", + "name": "ApiVersion", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -10002,10 +14430,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ControllerGroupName", + "name": "Type", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -10015,36 +14446,45 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { - "name": "IsRemoteService", + "name": "Summary", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "IsIntegrationService", + "name": "Remarks", "jsonName": null, - "type": "System.Boolean", - "typeSimple": "boolean", + "type": "System.String", + "typeSimple": "string", "isRequired": false, "minLength": null, "maxLength": null, "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "ApiVersion", + "name": "Description", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -10054,10 +14494,13 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { - "name": "Type", + "name": "DisplayName", "jsonName": null, "type": "System.String", "typeSimple": "string", @@ -10067,7 +14510,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Interfaces", @@ -10080,7 +14526,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Actions", @@ -10093,9 +14542,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel": { "baseType": null, @@ -10115,7 +14571,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Name", @@ -10128,7 +14587,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Methods", @@ -10141,9 +14603,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel": { "baseType": null, @@ -10163,7 +14632,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "ParametersOnMethod", @@ -10176,7 +14648,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "ReturnValue", @@ -10189,9 +14664,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel": { "baseType": null, @@ -10211,7 +14693,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "TypeAsString", @@ -10224,7 +14709,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Type", @@ -10237,7 +14725,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "TypeSimple", @@ -10250,7 +14741,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "IsOptional", @@ -10263,7 +14757,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "DefaultValue", @@ -10276,9 +14773,64 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Summary", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Description", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "DisplayName", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Http.Modeling.ModuleApiDescriptionModel": { "baseType": null, @@ -10298,7 +14850,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "RemoteServiceName", @@ -10311,7 +14866,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Controllers", @@ -10324,9 +14882,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Http.Modeling.ParameterApiDescriptionModel": { "baseType": null, @@ -10346,7 +14911,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Name", @@ -10359,7 +14927,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "JsonName", @@ -10372,7 +14943,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Type", @@ -10385,7 +14959,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "TypeSimple", @@ -10398,7 +14975,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "IsOptional", @@ -10411,7 +14991,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "DefaultValue", @@ -10424,7 +15007,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "ConstraintTypes", @@ -10437,7 +15023,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "BindingSourceId", @@ -10450,7 +15039,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "DescriptorName", @@ -10463,9 +15055,64 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Summary", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Description", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "DisplayName", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Http.Modeling.PropertyApiDescriptionModel": { "baseType": null, @@ -10485,7 +15132,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "JsonName", @@ -10498,7 +15148,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Type", @@ -10511,7 +15164,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "TypeSimple", @@ -10524,7 +15180,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "IsRequired", @@ -10537,7 +15196,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "MinLength", @@ -10550,7 +15212,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "MaxLength", @@ -10563,7 +15228,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Minimum", @@ -10576,7 +15244,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Maximum", @@ -10589,7 +15260,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Regex", @@ -10602,7 +15276,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "IsNullable", @@ -10615,9 +15292,64 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Summary", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Description", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "DisplayName", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel": { "baseType": null, @@ -10637,7 +15369,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "TypeSimple", @@ -10650,9 +15385,64 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Summary", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "ContentTypes", + "jsonName": null, + "type": "[System.String]", + "typeSimple": "[string]", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "IsRemoteStream", + "jsonName": null, + "type": "System.Boolean", + "typeSimple": "boolean", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Http.Modeling.TypeApiDescriptionModel": { "baseType": null, @@ -10672,7 +15462,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "IsEnum", @@ -10685,7 +15478,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "EnumNames", @@ -10698,7 +15494,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "EnumValues", @@ -10711,7 +15510,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "GenericArguments", @@ -10724,7 +15526,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null }, { "name": "Properties", @@ -10737,9 +15542,80 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Summary", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Remarks", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "Description", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null + }, + { + "name": "DisplayName", + "jsonName": null, + "type": "System.String", + "typeSimple": "string", + "isRequired": false, + "minLength": null, + "maxLength": null, + "minimum": null, + "maximum": null, + "regex": null, + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.Localization.LanguageInfo": { "baseType": null, @@ -10759,7 +15635,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "UiCultureName", @@ -10772,7 +15651,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "DisplayName", @@ -10785,7 +15667,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "TwoLetterISOLanguageName", @@ -10798,9 +15683,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.MultiTenancy.TenantUserSharingStrategy": { "baseType": "System.Enum", @@ -10814,7 +15706,11 @@ 1 ], "genericArguments": null, - "properties": null + "properties": null, + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.NameValue": { "baseType": "Volo.Abp.NameValue", @@ -10822,7 +15718,11 @@ "enumNames": null, "enumValues": null, "genericArguments": null, - "properties": [] + "properties": [], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.NameValue": { "baseType": null, @@ -10844,7 +15744,10 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null }, { "name": "Value", @@ -10857,9 +15760,16 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": true + "isNullable": true, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null }, "Volo.Abp.ObjectExtending.ExtensibleObject": { "baseType": null, @@ -10879,9 +15789,46 @@ "minimum": null, "maximum": null, "regex": null, - "isNullable": false + "isNullable": false, + "summary": null, + "description": null, + "displayName": null } - ] + ], + "summary": null, + "remarks": null, + "description": null, + "displayName": null + }, + "Volo.Abp.Settings.ValueType": { + "baseType": "System.Enum", + "isEnum": true, + "enumNames": [ + "String", + "Number", + "Boolean", + "Date", + "Array", + "Option", + "Object", + "NoSet" + ], + "enumValues": [ + 0, + 1, + 2, + 3, + 4, + 5, + 10, + -1 + ], + "genericArguments": null, + "properties": null, + "summary": null, + "remarks": null, + "description": null, + "displayName": null } } } \ No newline at end of file diff --git a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobStoring.BlobManagement/LINGYUN/Abp/BlobStoring/BlobManagement/BlobManagementBlobProvider.cs b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobStoring.BlobManagement/LINGYUN/Abp/BlobStoring/BlobManagement/BlobManagementBlobProvider.cs index 54f5f306f..c09bc06e7 100644 --- a/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobStoring.BlobManagement/LINGYUN/Abp/BlobStoring/BlobManagement/BlobManagementBlobProvider.cs +++ b/aspnet-core/modules/blob-management/LINGYUN.Abp.BlobStoring.BlobManagement/LINGYUN/Abp/BlobStoring/BlobManagement/BlobManagementBlobProvider.cs @@ -40,7 +40,7 @@ public class BlobManagementBlobProvider : BlobProviderBase, ITransientDependency public async override Task GetOrNullAsync(BlobProviderGetArgs args) { - var content = await _blobService.GetContentAsync( + var content = await _blobService.DownloadAsync( new BlobFileGetByNameIntegrationDto { ContainerName = args.ContainerName, diff --git a/common.props b/common.props index a5b08dfad..5e78cfe29 100644 --- a/common.props +++ b/common.props @@ -14,6 +14,10 @@ true + + $(NoWarn);CS8618 + +