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.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2017-11-29 20:49:14 +08:00
|
|
|
|
namespace OpenAuth.Repository.Domain
|
2017-10-11 16:19:34 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 应用
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class Application : Entity
|
|
|
|
|
{
|
|
|
|
|
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>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 应用密钥
|
|
|
|
|
/// </summary>
|
2018-04-14 15:21:09 +08:00
|
|
|
|
public string AppSecret { get; set; }
|
2017-10-11 16:19:34 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 应用描述
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 应用图标
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Icon { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否可用
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool Disable { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建日期
|
|
|
|
|
/// </summary>
|
2018-04-14 15:21:09 +08:00
|
|
|
|
public System.DateTime CreateTime { get; set; }
|
2017-10-11 16:19:34 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建人
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CreateUser { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|