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 int seq { 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 int seq { 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; }
|
}
|
}
|