yl
2022-10-16 4fe4b2b27a80008993ec3f3b378e8988e21e0788
VueWebApi/Models/TreeDM.cs
@@ -10,6 +10,7 @@
        public string code { get; set; }
        public string name { get; set; }
        public string flag { get; set; }
        public string is_delete { get; set; }    //是否隐藏
        public List<TreeDMOne> children { get; set; }
    }
    public class TreeDMOne
@@ -17,6 +18,7 @@
        public string code { set; get; }
        public string name { set; get; }
        public string flag { get; set; }
        public string is_delete { get; set; }  //是否隐藏
        public List<TreeDMTwo> children { get; set; }
    }
    public class TreeDMTwo
@@ -24,5 +26,6 @@
        public string code { set; get; }
        public string name { set; get; }
        public string flag { get; set; }
        public string is_delete { get; set; } //是否隐藏
    }
}