yl
2022-06-16 554cb4d840d2bd2a8c8b925d6e4242a949e88f24
VueWebApi/Models/TreeDM.cs
@@ -7,18 +7,22 @@
{
    public class TreeDM
    {
        public string id { get; set; }
        public string code { get; set; }
        public string name { get; set; }
        public string type { get; set; }
        public string flag { get; set; }
        public List<TreeDM> children { get; set; }
        public List<AA> children1 { get; set; }
        public List<TreeDMOne> children { get; set; }
    }
    public class AA
    public class TreeDMOne
    {
        public string code { set; get; }
        public string name { set; get; }
        public string flag { get; set; }   //是否分配角色
        public string flag { get; set; }
        public List<TreeDMTwo> children { get; set; }
    }
    public class TreeDMTwo
    {
        public string code { set; get; }
        public string name { set; get; }
        public string flag { get; set; }
    }
}