1 复制代码 2 public class Menu:IEntity 3 { 4 public int Id { get; set; } 5 public string text { get; set; } 6 public bool group { get; set; } 7 public bool shortout_root { get; set; } 8 public string link { get; set; } 9 public string icon { get; set; } 10 public bool linkExact { get; set; } 11 public virtual List<Menu> children { get; set; } 12 public virtual int? parentId { get; se