2023-06-10 13:53:00 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
using Yi.Framework.Infrastructure.Data.Auditing;
|
|
|
|
|
|
using Yi.Framework.Infrastructure.Ddd.Entities;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Module.WebFirstManager.Entities
|
|
|
|
|
|
{
|
2023-09-22 10:25:05 +08:00
|
|
|
|
[SugarTable("Template")]
|
2023-09-18 23:31:36 +08:00
|
|
|
|
public class TemplateEntity : IEntity<long>
|
2023-06-10 13:53:00 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
2023-09-19 23:48:37 +08:00
|
|
|
|
[SugarColumn( IsPrimaryKey = true)]
|
2023-06-10 13:53:00 +08:00
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 模板字符串
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string TemplateStr { get; set; } = string.Empty;
|
|
|
|
|
|
|
2023-09-18 23:31:36 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 生成路径
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string BuildPath { get; set; }
|
2023-06-10 13:53:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|