using System.Collections.Generic;
namespace ZR.Model.System.Dto
{
public class SysRoleDto : SysBase
{
public long RoleId { get; set; }
///
/// 要添加的菜单集合
///
public List MenuIds { get; set; } = new List();
public string RoleName { get; set; }
public string RoleKey { get; set; }
public int RoleSort { get; set; }
public string Status { get; set; }
///
/// 减少菜单集合
///
public List DelMenuIds { get; set; } = new List();
}
}