using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using OpenAuth.Repository.Core;
using SqlSugar;
namespace OpenAuth.Repository.Domain
{
///
/// 应用
///
[SugarTable("sys_application")]
public partial class SysApplication
{
[SugarColumn(IsPrimaryKey =true)]
public long Id { get; set; }
///
/// 应用名称
///
[Description("应用名称")]
public string Name { get; set; }
///
/// 应用密钥
///
[Description("应用密钥")]
public string AppSecret { get; set; }
///
/// 应用描述
///
[Description("应用描述")]
public string Description { get; set; }
///
/// 应用图标
///
[Description("应用图标")]
public string Icon { get; set; }
///
/// 是否可用
///
[Description("是否可用")]
public bool Disable { get; set; }
///
/// 创建日期
///
[Description("创建日期")]
public System.DateTime CreateTime { get; set; }
///
/// 创建人
///
[Description("创建人")]
public string CreateUser { get; set; }
}
}