namespace @(Model.EntityNamespace); ////// @(string.IsNullOrWhiteSpace(classNameRemark) ? className : classNameRemark) /// [EntityDescription(FieldIgnored = true)] [Table("@Model.TableName")] public class @className : @Html.Raw(GetIdType()) { @foreach (var item in tableInfos) {///} }/// @(string.IsNullOrWhiteSpace(item.DisplayName) ? item.ColumnName : item.DisplayName) => 备注: @(string.IsNullOrWhiteSpace(item.Describe) ? item.ColumnName : item.Describe) /// public @(GetTypeNew(item)) @item.ColumnName { get; set; }