rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Menu/MenuCreateInputVo.cs.

根目录时传入空ID会报异常

Signed-off-by: 凯明 <120665461@qq.com>
This commit is contained in:
凯明
2024-10-09 09:27:32 +00:00
committed by Gitee
parent 44f94f8398
commit 1b2977d591

View File

@@ -7,7 +7,7 @@ namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Menu
/// </summary> /// </summary>
public class MenuCreateInputVo public class MenuCreateInputVo
{ {
public Guid Id { get; set; } public Guid? Id { get; set; }
public DateTime CreationTime { get; set; } = DateTime.Now; public DateTime CreationTime { get; set; } = DateTime.Now;
public Guid? CreatorId { get; set; } public Guid? CreatorId { get; set; }
public bool State { get; set; } public bool State { get; set; }