using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FangYar.Model.TBL { //用这个model来传到前台json,生成菜单 public class MenuJsonModel { public string id { get; set; } public string title { get; set; } public string icon { get; set; } public string href { get; set; } public bool spread { get; set; } public List children { get; set; } public int order { get; set; } } }