yl
2023-05-09 0e020006bf7c290c0059a22783b7b247e9bf185a
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; } //是否隐藏
    }
}