OpenAuth.Net/OpenAuth.Repository/Domain/Application.cs

70 lines
2.0 KiB
C#
Raw Normal View History

2017-10-11 16:19:34 +08:00
//------------------------------------------------------------------------------
// <autogenerated>
// 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
// </autogenerated>
//------------------------------------------------------------------------------
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
2017-10-11 16:19:34 +08:00
2017-11-29 20:49:14 +08:00
namespace OpenAuth.Repository.Domain
2017-10-11 16:19:34 +08:00
{
/// <summary>
/// 应用
/// </summary>
[Table("Application")]
public partial class Application : StringEntity
2017-10-11 16:19:34 +08:00
{
public Application()
{
this.Name= string.Empty;
2018-04-14 15:21:09 +08:00
this.AppSecret= string.Empty;
2017-10-11 16:19:34 +08:00
this.Description= string.Empty;
this.Icon= string.Empty;
this.CreateTime= DateTime.Now;
this.CreateUser= string.Empty;
}
/// <summary>
2018-04-14 15:21:09 +08:00
/// 应用名称
2017-10-11 16:19:34 +08:00
/// </summary>
[Description("应用名称")]
2017-10-11 16:19:34 +08:00
public string Name { get; set; }
/// <summary>
/// 应用密钥
/// </summary>
[Description("应用密钥")]
2018-04-14 15:21:09 +08:00
public string AppSecret { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 应用描述
/// </summary>
[Description("应用描述")]
2017-10-11 16:19:34 +08:00
public string Description { get; set; }
/// <summary>
/// 应用图标
/// </summary>
[Description("应用图标")]
2017-10-11 16:19:34 +08:00
public string Icon { get; set; }
/// <summary>
/// 是否可用
/// </summary>
[Description("是否可用")]
2017-10-11 16:19:34 +08:00
public bool Disable { get; set; }
/// <summary>
/// 创建日期
/// </summary>
[Description("创建日期")]
2018-04-14 15:21:09 +08:00
public System.DateTime CreateTime { get; set; }
2017-10-11 16:19:34 +08:00
/// <summary>
/// 创建人
/// </summary>
[Description("创建人")]
2017-10-11 16:19:34 +08:00
public string CreateUser { get; set; }
}
}