添加各个木块代码生成

This commit is contained in:
陈淳
2023-01-04 13:40:30 +08:00
parent 7838cd1a6a
commit fbcd004b7e
23 changed files with 505 additions and 33 deletions

View File

@@ -9,13 +9,28 @@ namespace Yi.Framework.Template.Const
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#";
}
}