feat:扩展webfirst

This commit is contained in:
橙子
2023-09-18 23:31:36 +08:00
parent 65a0a6fb92
commit 04fc03ccf5
5 changed files with 102 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ using Yi.Framework.Infrastructure.Ddd.Entities;
namespace Yi.Framework.Module.WebFirstManager.Entities
{
public class TemplateEntity : IEntity<long>, ICreationAuditedObject
public class TemplateEntity : IEntity<long>
{
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
@@ -20,9 +20,9 @@ namespace Yi.Framework.Module.WebFirstManager.Entities
/// </summary>
public string TemplateStr { get; set; } = string.Empty;
public long? CreatorId { get; set; }
public DateTime CreationTime { get; set; }
/// <summary>
/// 生成路径
/// </summary>
public string BuildPath { get; set; }
}
}