增加Global Using
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-20 10:19:08 +08:00
parent 115017197b
commit fc30cb39ee
408 changed files with 11031 additions and 12556 deletions
@@ -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>();
}