From 0aa6443a200b154b7b750aebe43670cf7215c725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=B7=B3?= Date: Mon, 25 Sep 2023 18:16:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E8=8F=9C=E5=8D=95?= =?UTF-8?q?=E6=8E=92=E5=BA=8F=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Yi.Framework.Infrastructure.csproj | 2 +- .../Yi.Furion.Core/Rbac/Dtos/Menu/MenuCreateInputVo.cs | 1 + .../Yi.Furion.Core/Rbac/Dtos/Menu/MenuUpdateInputVo.cs | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Yi.Furion.Net6/Yi.Framework.Infrastructure/Yi.Framework.Infrastructure.csproj b/Yi.Furion.Net6/Yi.Framework.Infrastructure/Yi.Framework.Infrastructure.csproj index 7e3ece7c..7ef85142 100644 --- a/Yi.Furion.Net6/Yi.Framework.Infrastructure/Yi.Framework.Infrastructure.csproj +++ b/Yi.Furion.Net6/Yi.Framework.Infrastructure/Yi.Framework.Infrastructure.csproj @@ -8,7 +8,7 @@ - + diff --git a/Yi.Furion.Net6/Yi.Furion.Core/Rbac/Dtos/Menu/MenuCreateInputVo.cs b/Yi.Furion.Net6/Yi.Furion.Core/Rbac/Dtos/Menu/MenuCreateInputVo.cs index e717ba2d..f29df7f1 100644 --- a/Yi.Furion.Net6/Yi.Furion.Core/Rbac/Dtos/Menu/MenuCreateInputVo.cs +++ b/Yi.Furion.Net6/Yi.Furion.Core/Rbac/Dtos/Menu/MenuCreateInputVo.cs @@ -24,5 +24,6 @@ namespace Yi.Furion.Core.Rbac.Dtos.Menu public string? Remark { get; set; } public string? Component { get; set; } public string? Query { get; set; } + public int OrderNum { get; set; } } } diff --git a/Yi.Furion.Net6/Yi.Furion.Core/Rbac/Dtos/Menu/MenuUpdateInputVo.cs b/Yi.Furion.Net6/Yi.Furion.Core/Rbac/Dtos/Menu/MenuUpdateInputVo.cs index a1414b6f..52271add 100644 --- a/Yi.Furion.Net6/Yi.Furion.Core/Rbac/Dtos/Menu/MenuUpdateInputVo.cs +++ b/Yi.Furion.Net6/Yi.Furion.Core/Rbac/Dtos/Menu/MenuUpdateInputVo.cs @@ -21,6 +21,8 @@ namespace Yi.Furion.Core.Rbac.Dtos.Menu public string? Remark { get; set; } public string? Component { get; set; } public string? Query { get; set; } + public int OrderNum { get; set; } + //public List? Children { get; set; } } }