yl
2022-10-25 4f86b3b78b5b638b486b497221a2f1c8fbab3ef6
VueWebApi/Models/TreeDM.cs
@@ -7,18 +7,25 @@
{
    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 string is_delete { 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 string is_delete { 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; }
        public string is_delete { get; set; } //是否隐藏
    }
}