添加代码生成器模块service实现

This commit is contained in:
橙子
2023-01-03 20:06:16 +08:00
parent 53b4674da4
commit 62c5470efe
8 changed files with 119 additions and 538 deletions

View File

@@ -11,17 +11,17 @@ namespace Yi.Framework.Template.Abstract
/// <summary>
/// 构建生成路径
/// </summary>
string BuildPath { get; set; }
string? BuildPath { get; set; }
/// <summary>
/// 模板文件路径
/// </summary>
string TemplatePath { get; set; }
string? TemplatePath { get; set; }
/// <summary>
/// 备份文件路径
/// </summary>
string BakPath { get; set; }
string? BakPath { get; set; }
/// <summary>