shgx_tz_mom/ZR.Model/System/Dto/SysRoleMenuDto.cs

16 lines
451 B
C#
Raw Permalink Normal View History

2024-06-07 11:04:26 +08:00
namespace ZR.Model.System.Dto
2023-05-12 08:03:26 +08:00
{
public class SysRoleMenuDto
{
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 string Create_by { get; set; }
2024-06-07 11:04:26 +08:00
public DateTime Create_time { get; set; }
2023-05-12 08:03:26 +08:00
}
}