2021-10-11 21:50:50 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2022-02-21 15:00:15 +08:00
|
|
|
|
using Yi.Framework.Common.Models;
|
2021-10-11 21:50:50 +08:00
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Model.Models
|
|
|
|
|
|
{
|
2022-02-21 15:00:15 +08:00
|
|
|
|
public class menu :loopModel<menu>,ITreeModel<menu>
|
2021-10-11 21:50:50 +08:00
|
|
|
|
{
|
|
|
|
|
|
public string icon { get; set; }
|
|
|
|
|
|
public string router { get; set; }
|
2021-10-12 13:45:24 +08:00
|
|
|
|
public string menu_name { get; set; }
|
2021-11-06 17:10:44 +08:00
|
|
|
|
|
|
|
|
|
|
public List<role> roles { get; set; }
|
2021-10-11 21:50:50 +08:00
|
|
|
|
public mould mould { get; set; }
|
2022-02-21 15:00:15 +08:00
|
|
|
|
|
|
|
|
|
|
|
2021-10-11 21:50:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|