using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Yi.Framework.Template.Const { public class TemplateConst { /// /// 模块名称大写 /// public const string ModelName = "#ModelName#"; /// /// 模块名称小写 /// public const string LowerModelName = "#LowerModelName#"; /// /// 实体名称大驼峰 /// public const string EntityName = "#EntityName#"; /// /// 实体名称小驼峰 /// public const string LowerEntityName = "#LowerEntityName#"; /// /// 实体字段 /// public const string EntityField = "#EntityField#"; } }