2023-05-05 09:45:45 +08:00

18 lines
481 B
C#

using System.Collections.Generic;
namespace ZR.Model.System.Dto
{
public class SysRoleDto : SysBase
{
public long RoleId { get; set; }
/// <summary>
/// 角色分配菜单
/// </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; }
public string Status { get; set; }
}
}