19 lines
501 B
C#
Raw Permalink Normal View History

2024-05-16 13:30:30 +08:00
using System;
using System.Collections.Generic;
2024-07-01 16:04:10 +08:00
namespace DOAN.Model.System.Dto
2024-05-16 13:30:30 +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; }
public DateTime Create_time{ get; set; }
}
}