using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JLHHJSvr.Com.Model { public sealed class sys_func_pwr { /// /// 功能id /// public int funcid { get; set; } /// /// 父级id /// public int parentid { get; set; } /// /// 主功能名称 /// public string treename { get; set; } /// /// 副功能名称 /// public string menuname { get; set; } /// /// 有效 /// public int if_use { get; set; } /// /// 子菜单 /// public List children { get; set; } } }