//------------------------------------------------------------------------------ // // 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; namespace OpenAuth.Domain { /// /// 应用 /// public partial class Application : Entity { public Application() { this.Name= string.Empty; this.AppId= string.Empty; this.AppKey= string.Empty; this.Description= string.Empty; this.Icon= string.Empty; this.CreateTime= DateTime.Now; this.CreateUser= string.Empty; } /// /// 名称 /// public string Name { get; set; } /// /// 应用ID /// public string AppId { get; set; } /// /// 应用密钥 /// public string AppKey { get; set; } /// /// 应用描述 /// public string Description { get; set; } /// /// 应用图标 /// public string Icon { get; set; } /// /// 是否可用 /// public bool Disable { get; set; } /// /// 创建日期 /// public System.DateTime? CreateTime { get; set; } /// /// 创建人 /// public string CreateUser { get; set; } } }