2023-01-03 20:06:16 +08:00
|
|
|
|
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>
|
2023-01-04 13:40:30 +08:00
|
|
|
|
/// 模块名称大写
|
2023-01-03 20:06:16 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string ModelName = "#ModelName#";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2023-01-04 13:40:30 +08:00
|
|
|
|
/// 模块名称小写
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string LowerModelName = "#LowerModelName#";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 实体名称大驼峰
|
2023-01-03 20:06:16 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string EntityName = "#EntityName#";
|
2023-01-04 13:40:30 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 实体名称小驼峰
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string LowerEntityName = "#LowerEntityName#";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 实体字段
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string EntityField = "#EntityField#";
|
2023-01-03 20:06:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|