From fcca000072a8cfae98c1cb3dadce0512b19083cc Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期二, 28 六月 2022 20:09:13 +0800
Subject: [PATCH] ERP订单查询,订单下达、订单关闭功能开发
---
VueWebApi/Models/TreeDM.cs | 16 ++++++++++------
1 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/VueWebApi/Models/TreeDM.cs b/VueWebApi/Models/TreeDM.cs
index 6d412c8..3db13d5 100644
--- a/VueWebApi/Models/TreeDM.cs
+++ b/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; }
}
}
\ No newline at end of file
--
Gitblit v1.9.3