2023-09-27 18:01:10 +08:00
|
|
|
|
using Yi.Framework.Infrastructure.Ddd.Dtos.Abstract;
|
2023-06-10 13:53:00 +08:00
|
|
|
|
|
2023-09-21 19:55:55 +08:00
|
|
|
|
namespace Yi.Framework.Module.WebFirstManager.Dtos.Template
|
2023-06-10 13:53:00 +08:00
|
|
|
|
{
|
2023-09-22 10:25:05 +08:00
|
|
|
|
public class TemplateDto : IEntityDto<long>
|
2023-06-10 13:53:00 +08:00
|
|
|
|
{
|
2023-09-22 10:25:05 +08:00
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 模板字符串
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string TemplateStr { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 生成路径
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string BuildPath { get; set; }
|
2023-09-27 18:01:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 模板名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 备注
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? Remarks { get; set; }
|
2023-06-10 13:53:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|