@@ -1,6 +1,6 @@
|
||||
namespace IRaCIS.Application.Contracts
|
||||
{
|
||||
public class MenuCommand
|
||||
public class MenuCommand
|
||||
{
|
||||
public Guid? MenuId { get; set; }
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
|
||||
public string Meta { get; set; } = string.Empty;
|
||||
|
||||
public string Note { get; set; }
|
||||
public string Note { get; set; }
|
||||
|
||||
public string Redirect { get; set; } = string.Empty;
|
||||
|
||||
@@ -61,11 +61,11 @@
|
||||
{
|
||||
public Guid? ParentId { get; set; }
|
||||
|
||||
public string? MenuType { get; set; }
|
||||
public string? MenuType { get; set; }
|
||||
|
||||
public bool? IsEnable { get; set; }
|
||||
public bool? IsEnable { get; set; }
|
||||
|
||||
public bool? IsCache { get; set; }
|
||||
public bool? IsCache { get; set; }
|
||||
|
||||
public bool? IsDisplay { get; set; }
|
||||
|
||||
@@ -75,20 +75,20 @@
|
||||
}
|
||||
|
||||
|
||||
public class MenuFunctionDTO:MenuCommand
|
||||
public class MenuFunctionDTO : MenuCommand
|
||||
{
|
||||
public List<MenuFunctionDTO> Children { get; set; }=new List<MenuFunctionDTO>();
|
||||
public List<MenuFunctionDTO> Children { get; set; } = new List<MenuFunctionDTO>();
|
||||
|
||||
public DateTime CreateTime { get; set; }
|
||||
public Guid CreateUserId { get; set; }
|
||||
public DateTime UpdateTime { get; set; }
|
||||
public DateTime CreateTime { get; set; }
|
||||
public Guid CreateUserId { get; set; }
|
||||
public DateTime UpdateTime { get; set; }
|
||||
public Guid UpdateUserId { get; set; }
|
||||
}
|
||||
|
||||
public class RoleMenuFunctionSelectDTO
|
||||
{
|
||||
public Guid RoleId { get; set; }
|
||||
public List<Guid> MenuFunctionId { get; set; }=new List<Guid>();
|
||||
public List<Guid> MenuFunctionId { get; set; } = new List<Guid>();
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user