yl
2022-06-10 6045668287bf4062f6455565d7cc7cbcba186225
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace VueWebApi.Models
{
    public class TreeObejct
    {
        public string code { get; set; }
        public string name { get; set; }
        public string flag { get; set; }
        public List<TreeObejctCont> children { get; set; }//子节点
    }
    public class TreeObejctCont
    {
        public string code { get; set; }
        public string name { get; set; }
        public string flag { get; set; }
    }
}