using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 功能权限多表联查类 /// public class FunctionOperating { string name; /// /// 权限名称 /// public string Name { get { return name; } set { name = value; } } string code; /// /// 权限代码 /// public string Code { get { return code; } set { code = value; } } int isEnable; /// /// 是否启用 /// public int IsEnable { get { return isEnable; } set { isEnable = value; } } int uid; /// /// 用户编号 /// public int Uid { get { return uid; } set { uid = value; } } } }