//------------------------------------------------------------------------------ // // 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.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; using OpenAuth.Repository.Core; namespace OpenAuth.Repository.Domain { /// /// 资源表 /// [Table("Resource")] public partial class Resource : TreeEntity { public Resource() { this.Name= string.Empty; this.SortNo= 0; this.Description= string.Empty; this.AppId= string.Empty; this.AppName= string.Empty; this.TypeName= string.Empty; this.TypeId= string.Empty; this.CreateTime= DateTime.Now; this.CreateUserId= string.Empty; this.CreateUserName= string.Empty; this.UpdateTime= DateTime.Now; this.UpdateUserId= string.Empty; this.UpdateUserName= string.Empty; } /// /// 排序号 /// [Description("排序号")] public int SortNo { get; set; } /// /// 描述 /// [Description("描述")] public string Description { get; set; } /// /// 资源所属应用ID /// [Description("资源所属应用ID")] [Browsable(false)] public string AppId { get; set; } /// /// 所属应用名称 /// [Description("所属应用名称")] public string AppName { get; set; } /// /// 分类名称 /// [Description("分类名称")] public string TypeName { get; set; } /// /// 分类ID /// [Description("分类ID")] [Browsable(false)] public string TypeId { get; set; } /// /// 是否可用 /// [Description("是否可用")] public bool Disable { get; set; } /// /// 创建时间 /// [Description("创建时间")] public System.DateTime CreateTime { get; set; } /// /// 创建人ID /// [Description("创建人ID")] [Browsable(false)] public string CreateUserId { get; set; } /// /// 创建人 /// [Description("创建人")] public string CreateUserName { get; set; } /// /// 最后更新时间 /// [Description("最后更新时间")] public System.DateTime? UpdateTime { get; set; } /// /// 最后更新人ID /// [Description("最后更新人ID")] [Browsable(false)] public string UpdateUserId { get; set; } /// /// 最后更新人 /// [Description("最后更新人")] public string UpdateUserName { get; set; } } }