SysRoleMenuDto.cs 499 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. namespace ZR.Model.System.Dto
  4. {
  5. public class SysRoleMenuDto
  6. {
  7. public long RoleId { get; set; }
  8. /// <summary>
  9. /// 角色分配菜单
  10. /// </summary>
  11. public List<long> MenuIds { get; set; } = new List<long>();
  12. public string RoleName { get; set; }
  13. public string RoleKey { get; set; }
  14. public string Create_by { get; set; }
  15. public DateTime Create_time{ get; set; }
  16. }
  17. }