using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Newtonsoft.Json; using FreeSql.DataAnnotations; {% var dbf = dbfirst as FreeSql.IDbFirst; var cols = (table.Columns as List); Func UString = stra => stra.Substring(0, 1).ToUpper() + stra.Substring(1); Func GetCsType = cola3 => { if (cola3.DbType == (int)MySql.Data.MySqlClient.MySqlDbType.Enum || cola3.DbType == (int)MySql.Data.MySqlClient.MySqlDbType.Set) { return $"{UString(cola3.Table.Name)}{cola3.Name.ToUpper()}{(cola3.IsNullable ? "?" : "")}"; } return dbf.GetCsType(cola3); }; %} namespace test.Model { [JsonObject(MemberSerialization.OptIn), Table(Name = "{#!string.IsNullOrEmpty(table.Schema) ? table.Schema + "." : ""}{#table.Name}"{if cols.Where(cola003 => cola003.Name.ToLower() == "is_deleted" || cola003.Name.ToLower() == "isdeleted").Any()}, SelectFilter = "a.IsDeleted = 1"{/if})] public partial class {#UString(table.Name)} {{for col,index in table.Columns} {if string.IsNullOrEmpty(col.Coment) == false}/// /// {#col.Coment.Replace("\r\n", "\n").Replace("\n", "\r\n /// ")} /// {/if} [JsonProperty, Column(Name = "{#col.Name}", DbType = "{#col.DbTypeTextFull}"{if col.IsPrimary == true}, IsPrimary = true{/if}{if col.IsIdentity == true}, IsIdentity = true{/if}{if col.IsNullable == true}, IsNullable = true{/if})] public {#GetCsType(col)} {#UString(col.Name)} { get; set; } {/for} } {include ../../include/enumtype.tpl} }