You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using OpenAuth.Repository.Core;
|
|
using SqlSugar;
|
|
|
|
namespace OpenAuth.Repository.Domain
|
|
{
|
|
/// <summary>
|
|
/// 应用
|
|
/// </summary>
|
|
[SugarTable("sys_application")]
|
|
public partial class SysApplication
|
|
{
|
|
[SugarColumn(IsPrimaryKey =true)]
|
|
public long Id { get; set; }
|
|
/// <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; }
|
|
|
|
}
|
|
} |