Files
sy_hx_pbl_backend/DOAN.Model/System/Model/Dto/SysRoleMenuDto.cs
2024-09-23 09:14:22 +08:00

19 lines
501 B
C#

using System;
using System.Collections.Generic;
namespace DOAN.Model.System.Dto
{
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; }
}
}