yl
2022-06-15 d037f94e6047d6ed3e41e29301620e2ffabf106f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace VueWebApi.Models
{
    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 class AA
    {
        public string code { set; get; }
        public string name { set; get; }
        public string flag { get; set; }   //是否分配角色
    }
}