mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 10:37:55 +08:00
fix issue #I3ODI5 swagger增加分组的功能
fix issue #I3PE3R 会签节点异常,提示'-1' was not present in ... fix CodeSmith生成的后端代码报错 https://gitee.com/yubaolee/OpenAuth.Core/issues/I3OXJZ
This commit is contained in:
@@ -13,6 +13,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "AccessObjs")]
|
||||
public class AccessObjsController : ControllerBase
|
||||
{
|
||||
private readonly RevelanceManagerApp _app;
|
||||
|
@@ -11,6 +11,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "Applications")]
|
||||
public class ApplicationsController : ControllerBase
|
||||
{
|
||||
private readonly AppManager _app;
|
||||
|
@@ -14,6 +14,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "BuilderTableColumns")]
|
||||
public class BuilderTableColumnsController : ControllerBase
|
||||
{
|
||||
private readonly BuilderTableColumnApp _app;
|
||||
|
@@ -14,6 +14,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "BuilderTables")]
|
||||
public class BuilderTablesController : ControllerBase
|
||||
{
|
||||
private readonly BuilderTableApp _app;
|
||||
|
@@ -13,6 +13,7 @@ using OpenAuth.App.Response;
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "CategoryTypes")]
|
||||
public class CategoryTypesController : ControllerBase
|
||||
{
|
||||
private readonly CategoryTypeApp _app;
|
||||
|
@@ -14,6 +14,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "Categorys")]
|
||||
public class CategorysController : ControllerBase
|
||||
{
|
||||
private readonly CategoryApp _app;
|
||||
|
@@ -32,6 +32,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "Check")]
|
||||
public class CheckController : ControllerBase
|
||||
{
|
||||
private readonly IAuth _authUtil;
|
||||
|
@@ -14,6 +14,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "DataPrivilegeRules")]
|
||||
public class DataPrivilegeRulesController : ControllerBase
|
||||
{
|
||||
private readonly DataPrivilegeRuleApp _app;
|
||||
|
@@ -18,6 +18,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "Files")]
|
||||
public class FilesController :ControllerBase
|
||||
{
|
||||
|
||||
|
@@ -22,6 +22,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "FlowInstances")]
|
||||
public class FlowInstancesController : ControllerBase
|
||||
{
|
||||
private readonly FlowInstanceApp _app;
|
||||
|
@@ -14,6 +14,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "FlowSchemes")]
|
||||
public class FlowSchemesController : ControllerBase
|
||||
{
|
||||
private readonly FlowSchemeApp _app;
|
||||
|
@@ -14,6 +14,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "Forms")]
|
||||
public class FormsController : ControllerBase
|
||||
{
|
||||
private readonly FormApp _app;
|
||||
|
@@ -14,6 +14,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "Modules")]
|
||||
public class ModulesController : ControllerBase
|
||||
{
|
||||
private ModuleManagerApp _app;
|
||||
|
@@ -16,6 +16,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "OpenJobs")]
|
||||
public class OpenJobsController : ControllerBase
|
||||
{
|
||||
private readonly OpenJobApp _app;
|
||||
|
@@ -11,6 +11,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "Orgs")]
|
||||
public class OrgsController : ControllerBase
|
||||
{
|
||||
private readonly OrgManagerApp _app;
|
||||
|
@@ -17,6 +17,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "Resources")]
|
||||
public class ResourcesController : ControllerBase
|
||||
{
|
||||
private readonly ResourceApp _app;
|
||||
|
@@ -14,6 +14,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "Roles")]
|
||||
public class RolesController : ControllerBase
|
||||
{
|
||||
private readonly RoleApp _app;
|
||||
|
@@ -11,6 +11,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "SysConf")]
|
||||
public class SysConfController :ControllerBase
|
||||
{
|
||||
private IOptions<AppSetting> _appConfiguration;
|
||||
|
@@ -14,6 +14,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "SysLogs")]
|
||||
public class SysLogsController : ControllerBase
|
||||
{
|
||||
private readonly SysLogApp _app;
|
||||
|
@@ -14,6 +14,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "SysMessages")]
|
||||
public class SysMessagesController : ControllerBase
|
||||
{
|
||||
private readonly SysMessageApp _app;
|
||||
|
@@ -12,7 +12,8 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// 用户操作
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "Users")]
|
||||
public class UsersController : ControllerBase
|
||||
{
|
||||
private readonly UserManagerApp _app;
|
||||
|
@@ -15,6 +15,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "WmsInboundOrderDtbls")]
|
||||
public class WmsInboundOrderDtblsController : ControllerBase
|
||||
{
|
||||
private readonly WmsInboundOrderDtblApp _app;
|
||||
|
@@ -14,6 +14,7 @@ namespace OpenAuth.WebApi.Controllers
|
||||
/// </summary>
|
||||
[Route("api/[controller]/[action]")]
|
||||
[ApiController]
|
||||
[ApiExplorerSettings(GroupName = "WmsInboundOrderTbls")]
|
||||
public class WmsInboundOrderTblsController : ControllerBase
|
||||
{
|
||||
private readonly WmsInboundOrderTblApp _app;
|
||||
|
Reference in New Issue
Block a user