WYB
2021-03-22 91b8cdad021ab052e4991f3d41834a6f0ddc36b8
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
using System.Collections.Generic;
 
namespace JiepeiWMS.Model.ViewModels
{
    /// <summary>
    /// 菜单展示model
    /// </summary>
    public class SidebarMenuViewModel
    {
        public SidebarMenuViewModel()
        {
            this.ChildMenuList = new List<SidebarMenuViewModel>();
        }
 
        public int Id { get; set; }
        public int? ParentId { get; set; }
        public string Name { get; set; }
        public string Icon { get; set; }
        public string Code { get; set; }
        public string LinkUrl { get; set; }
        public string Area { get; set; }
        public string Controller { get; set; }
        public string Action { get; set; }
 
        public List<SidebarMenuViewModel> ChildMenuList { get; set; }
    }
}