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

@@ -3,11 +3,16 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using Yi.Framework.Infrastructure.Ddd.Entities;
namespace Yi.Framework.Module.WebFirstManager.Entities
{
public class TemplateVarEntity
public class TemplateVarEntity : IEntity<long>
{
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
public long Id { get; set; }
/// <summary>
/// 变量名称
/// </summary>
@@ -17,5 +22,6 @@ namespace Yi.Framework.Module.WebFirstManager.Entities
/// 变量值
/// </summary>
public string Value { get; set; } = string.Empty;
}
}