添加代码生成器模块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

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Template.Const
{
public class TemplateConst
{
/// <summary>
/// 模块名称
/// </summary>
public const string ModelName = "#ModelName#";
/// <summary>
/// 实体名称
/// </summary>
public const string EntityName = "#EntityName#";
}
}