2024-06-07 11:04:26 +08:00
|
|
|
|
namespace ZR.Model.System.Dto
|
2021-08-23 16:57:25 +08:00
|
|
|
|
{
|
2023-05-04 18:20:18 +08:00
|
|
|
|
public class SysRoleDto : SysBase
|
2021-08-23 16:57:25 +08:00
|
|
|
|
{
|
|
|
|
|
|
public long RoleId { get; set; }
|
|
|
|
|
|
/// <summary>
|
2023-05-12 08:03:26 +08:00
|
|
|
|
/// 要添加的菜单集合
|
2021-08-23 16:57:25 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
public List<long> MenuIds { get; set; } = new List<long>();
|
|
|
|
|
|
public string RoleName { get; set; }
|
|
|
|
|
|
public string RoleKey { get; set; }
|
|
|
|
|
|
public int RoleSort { get; set; }
|
2023-06-07 22:28:06 +08:00
|
|
|
|
public int Status { get; set; }
|
|
|
|
|
|
public int DataScope { get; set; }
|
|
|
|
|
|
public int[] DeptIds { get; set; }
|
2023-05-12 08:03:26 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 减少菜单集合
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public List<long> DelMenuIds { get; set; } = new List<long>();
|
2023-06-07 22:28:06 +08:00
|
|
|
|
public bool MenuCheckStrictly { get; set; }
|
|
|
|
|
|
public bool DeptCheckStrictly { get; set; }
|
|
|
|
|
|
|
2021-08-23 16:57:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|