using System; using System.Collections.Generic; namespace ZR.Model.System.Dto { public class SysRoleMenuDto { public long RoleId { get; set; } /// /// 角色分配菜单 /// public List MenuIds { get; set; } = new List(); public string RoleName { get; set; } public string RoleKey { get; set; } public string Create_by { get; set; } public DateTime Create_time{ get; set; } } }