//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using System; using System.Collections.Generic; using System.Text; using OpenAuth.Repository.Core; namespace OpenAuth.Repository.Domain { /// /// 功能模块表 /// public partial class Module : TreeEntity { public Module() { this.Url= string.Empty; this.HotKey= string.Empty; this.IconName= string.Empty; this.Status= 0; this.Vector= string.Empty; this.SortNo= 0; } /// /// 主页面URL /// public string Url { get; set; } /// /// 热键 /// public string HotKey { get; set; } /// /// 是否叶子节点 /// public bool IsLeaf { get; set; } /// /// 是否自动展开 /// public bool IsAutoExpand { get; set; } /// /// 节点图标文件名称 /// public string IconName { get; set; } /// /// 当前状态 /// public int Status { get; set; } /// /// 矢量图标 /// public string Vector { get; set; } /// /// 排序号 /// public int SortNo { get; set; } } }