From 4f86b3b78b5b638b486b497221a2f1c8fbab3ef6 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期二, 25 十月 2022 21:01:25 +0800
Subject: [PATCH] 大岛仓库看板接口修改

---
 VueWebApi/Models/TreeDM.cs |   19 +++++++++++++------
 1 files changed, 13 insertions(+), 6 deletions(-)

diff --git a/VueWebApi/Models/TreeDM.cs b/VueWebApi/Models/TreeDM.cs
index 6d412c8..6dd9d8e 100644
--- a/VueWebApi/Models/TreeDM.cs
+++ b/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; } //鏄惁闅愯棌
     }
 }
\ No newline at end of file

--
Gitblit v1.9.3