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 = "HuaTai_Insurance", DisableSyncStructure = true)] public partial class HuaTaiInsurance { [JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)] public string Gid { get; set; } [JsonProperty, Column(DbType = "varchar(200)")] public string Address { get; set; } [JsonProperty, Column(DbType = "money")] public decimal? Amt { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string AmtCurrency { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string ApplicantName { get; set; } [JsonProperty, Column(DbType = "varchar(200)")] public string BAddress { get; set; } [JsonProperty, Column(DbType = "varchar(40)")] public string BCell { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string BEmail { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string BID { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string BIDType { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string BillNumber { get; set; } [JsonProperty, Column(DbType = "varchar(80)")] public string BInsuredName { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string BusinessNo { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string CargoType { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string CDID { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string Cell { get; set; } [JsonProperty, Column(DbType = "numeric(18,5)")] public decimal? ChargeRate { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string ComName { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string CreditNO { get; set; } [JsonProperty, Column(DbType = "varchar(400)")] public string CreditNODesc { get; set; } [JsonProperty] public bool? CtoCIns { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string DatePritType { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string Email { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string EmpAccount { get; set; } [JsonProperty] public DateTime? EndTM { get; set; } [JsonProperty, Column(DbType = "decimal(10,3)")] public decimal? ExchangeRate { get; set; } [JsonProperty, Column(DbType = "varchar(2000)")] public string FilePathWeiChuXian { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string FlightsCheduled { get; set; } [JsonProperty, Column(DbType = "varchar(1000)")] public string FregihtItem { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string FromArea { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string FromContry { get; set; } [JsonProperty] public bool? HBFlag { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string IndemnityClaim { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string InsuranceCode { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string InsuranceName { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string InsuranceNumber { get; set; } [JsonProperty, Column(DbType = "decimal(10,1)")] public decimal? InvoiceBonus { get; set; } [JsonProperty, Column(DbType = "money")] public decimal? InvoiceMoney { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string InvoiceNumber { get; set; } [JsonProperty, Column(DbType = "varchar(5000)")] public string MianPeiContent { get; set; } [JsonProperty, Column(DbType = "varchar(300)")] public string NewSpecialAgreement { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string Operator { get; set; } [JsonProperty, Column(DbType = "varchar(40)")] public string OperatorId { get; set; } [JsonProperty] public int? OriginalSum { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string PackAndQuantity { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string PassPort { get; set; } [JsonProperty, Column(DbType = "varchar(500)")] public string PdfURL { get; set; } [JsonProperty, Column(DbType = "money")] public decimal? Premium { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string PremiumPrit { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string RdrCde { get; set; } [JsonProperty, Column(DbType = "varchar(400)")] public string RdrName { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string SerialNumber { get; set; } [JsonProperty, Column(DbType = "varchar(1000)")] public string Sign { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string SpecialAgreement { get; set; } [JsonProperty] public DateTime? StartTM { get; set; } [JsonProperty, Column(Name = "states", DbType = "varchar(30)")] public string States { get; set; } [JsonProperty] public bool? StrikeIns { get; set; } [JsonProperty, Column(Name = "subTim")] public DateTime? SubTim { get; set; } [JsonProperty, Column(DbType = "varchar(200)")] public string SurveyAdr { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string SurveyAdrID { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string TheBathNum { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string ToArea { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string ToContry { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string TrafficNumber { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string TransportDetail { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string TransportType { get; set; } [JsonProperty] public bool? WarIns { get; set; } } }