using FreeSql.DatabaseModel;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; namespace djy.Model { [JsonObject(MemberSerialization.OptIn), Table(Name = "t_sys_country_code", DisableSyncStructure = true)] public partial class TSysCountryCode { [JsonProperty, Column(Name = "c_code_id", IsPrimary = true, IsIdentity = true)] public int CCodeId { get; set; } [JsonProperty, Column(DbType = "varchar(1)")] public string AutoAudit { get; set; } [JsonProperty, Column(DbType = "varchar(200)")] public string CompanyCodeType { get; set; } [JsonProperty, Column(DbType = "varchar(200)")] public string CountryCode { get; set; } [JsonProperty, Column(DbType = "varchar(200)")] public string CountryName { get; set; } [JsonProperty, Column(DbType = "varchar(200)")] public string CountryNameEn { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string FeePersent { get; set; } [JsonProperty, Column(Name = "parameterCode", DbType = "varchar(10)")] public string ParameterCode { get; set; } } }