实现网站应用管理

This commit is contained in:
2026-01-07 00:15:04 +08:00
parent b098b3f815
commit c7ebb1eb86
8 changed files with 1835 additions and 56 deletions

View File

@@ -17,17 +17,22 @@ namespace Atomx.Common.Entities
public int Id { get; set; }
/// <summary>
/// 网站应用类型
/// 网站应用类型,
/// </summary>
public int Type { get; set; }
/// <summary>
/// 网站应用名称
/// </summary>
[Column(TypeName = "varchar(64)")]
public string Name { get; set; } = string.Empty;
/// <summary>
/// 介绍
/// </summary>
[Column(TypeName = "varchar(512)")]
public string Description { get; set; } = string.Empty;
/// <summary>
/// 是否可用
/// </summary>