| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace ConfigurationApi.Models.Dto
- {
- public class RoleFDto
- {
- public string id { get; set; }
- /// <summary>
- /// 父级节点ID
- /// </summary>
- public string pid { get; set; }
- public string name { get; set; }
- public bool ischecked { get; set; } = false;
- public string type { get; set; }
- }
- }
|