颐和api

RoleFDto.cs 467B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace ConfigurationApi.Models.Dto
  6. {
  7. public class RoleFDto
  8. {
  9. public string id { get; set; }
  10. /// <summary>
  11. /// 父级节点ID
  12. /// </summary>
  13. public string pid { get; set; }
  14. public string name { get; set; }
  15. public bool ischecked { get; set; } = false;
  16. public string type { get; set; }
  17. }
  18. }