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;
|
2020-10-22 14:59:36 +08:00
|
|
|
|
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>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Table("Application")]
|
2021-03-13 16:21:56 +08:00
|
|
|
|
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>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("应用名称")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 应用密钥
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("应用密钥")]
|
2018-04-14 15:21:09 +08:00
|
|
|
|
public string AppSecret { get; set; }
|
2017-10-11 16:19:34 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 应用描述
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("应用描述")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 应用图标
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("应用图标")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public string Icon { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否可用
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("是否可用")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public bool Disable { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建日期
|
|
|
|
|
/// </summary>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[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>
|
2020-10-22 14:59:36 +08:00
|
|
|
|
[Description("创建人")]
|
2017-10-11 16:19:34 +08:00
|
|
|
|
public string CreateUser { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|