using System;
using System.Collections.Generic;
using System.Text;
using ZR.Model.System;
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; }
}
}