添加代码生成模块

This commit is contained in:
橙子
2023-01-21 18:09:21 +08:00
parent 9b1b915925
commit 1f702c20ae
69 changed files with 828 additions and 7 deletions

View File

@@ -0,0 +1,38 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Template.ConstClasses
{
public class TemplateConst
{
/// <summary>
/// 模块名称大写
/// </summary>
public const string ModelName = "#ModelName#";
/// <summary>
/// 模块名称小写
/// </summary>
public const string LowerModelName = "#LowerModelName#";
/// <summary>
/// 实体名称大驼峰
/// </summary>
public const string EntityName = "#EntityName#";
/// <summary>
/// 实体名称小驼峰
/// </summary>
public const string LowerEntityName = "#LowerEntityName#";
/// <summary>
/// 实体字段
/// </summary>
public const string EntityField = "#EntityField#";
public const string BuildRootPath = "";
}
}