yl
2024-01-24 d95a3ff20fdb45b52ee7017e9fa36f7795c9dfa1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
 
namespace VueWebCoreApi.Models.RolePermission
{
    public class MenuItem
    {
        public string MenuCode { get; set; }
        public string ButtonCode { get; set; }
        public string DataCode { get; set; }
    }
 
    public class TreeOne
    {
        public string code { get; set; }
        public string name { get; set; }
        public string flag { get; set; }
        public string imgurl { get; set; }
        public string is_show { get; set; }
        public List<TreeTwo> children { get; set; }//子节点
    }
    public class TreeTwo
    {
        public string code { get; set; }
        public string name { get; set; }
        public string flag { get; set; }
        public string imgurl { get; set; }
        public string is_show { get; set; }
        public string buttoncode { get; set; }
        public string datacode { get; set; }
    }
}