Files
shgx_tz_mes_backend_sync/ZR.Model/System/Dto/SysRoleDto.cs

18 lines
481 B
C#
Raw Normal View History

2023-05-04 18:20:18 +08:00
using System.Collections.Generic;
2021-08-23 16:57:25 +08:00
2021-09-16 19:07:49 +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>
/// 角色分配菜单
/// </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; }
}
}