22 lines
458 B
C#
22 lines
458 B
C#
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#";
|
|
}
|
|
}
|