namespace InterfaceForward.Repositories.App.Entitys; /// /// 应用表 /// [SugarTable("t_app")] public class AppEntity : FullAuditedAggregateRoot { /// /// 自增主键 /// [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 应用名称 /// [SugarColumn(ColumnName = "Name")] public string Name { get; set; } /// /// 图标 key /// [SugarColumn(ColumnName = "LogoKey")] public string LogoKey { get; set; } /// /// app key /// [SugarColumn(ColumnName = "AppKey")] public string AppKey { get; set; } /// /// app secret /// [SugarColumn(ColumnName = "AppSecret")] public string AppSecret { get; set; } /// /// 应用描述 /// [SugarColumn(ColumnName = "Description")] public string Description { get; set; } /// /// 是否上线 /// [SugarColumn(ColumnName = "IsOnline")] public bool IsOnline { get; set; } }