OpenAuth.Net/OpenAuth.Repository/Domain/Application.cs
yubaolee 9c2d044d12 增加雪花算法https://gitee.com/yitter/idgenerator
增加对数据库主键为numberic的支持
2021-03-13 16:21:56 +08:00

70 lines
2.0 KiB
C#

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