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 = "ch_fee_settlement", DisableSyncStructure = true)] public partial class ChFeeSettlement { [JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper(); [JsonProperty, Column(DbType = "varchar(36)")] public string ACCOUNTRMB { get; set; } [JsonProperty, Column(Name = "ACCOUNTS_CURRENCY", DbType = "varchar(20)")] public string ACCOUNTSCURRENCY { get; set; } = ""; [JsonProperty, Column(Name = "ACCOUNTS_MONEY", DbType = "numeric(18,4)")] public decimal? ACCOUNTSMONEY { get; set; } = 0M; [JsonProperty, Column(Name = "ACCOUNTS_RATE", DbType = "numeric(18,4)")] public decimal? ACCOUNTSRATE { get; set; } = 0M; [JsonProperty, Column(DbType = "varchar(36)")] public string ACCOUNTUSD { get; set; } [JsonProperty, Column(Name = "ADVANCE_CURRENCY", DbType = "varchar(20)")] public string ADVANCECURRENCY { get; set; } = ""; [JsonProperty, Column(Name = "ADVANCE_MONEY", DbType = "numeric(18,4)")] public decimal? ADVANCEMONEY { get; set; } = 0M; [JsonProperty, Column(Name = "ADVANCE_RATE", DbType = "numeric(18,4)")] public decimal? ADVANCERATE { get; set; } = 0M; [JsonProperty, Column(Name = "AHSR_CURRENCY", DbType = "varchar(20)")] public string AHSRCURRENCY { get; set; } = ""; [JsonProperty, Column(Name = "AHSR_MONEY", DbType = "numeric(18,4)")] public decimal? AHSRMONEY { get; set; } = 0M; [JsonProperty, Column(Name = "AHSR_RATE", DbType = "numeric(18,4)")] public decimal? AHSRRATE { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? AMOUNTRMB { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? AMOUNTUSD { get; set; } [JsonProperty] public DateTime? AUDITTIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string AUDITUSER { get; set; } [JsonProperty] public DateTime? BILLDATE { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string BILLNO { get; set; } [JsonProperty] public int? BILLSTATUS { get; set; } [JsonProperty] public int? BILLTYPE { get; set; } [JsonProperty, Column(Name = "BS_CUSTOMERNAME", DbType = "varchar(200)")] public string BSCUSTOMERNAME { get; set; } = ""; [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? BUYRATE { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string COMPANYID { get; set; } [JsonProperty] public DateTime? CREATETIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string CREATEUSER { get; set; } [JsonProperty, Column(DbType = "varchar(3)")] public string CURR { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string CUSTACCOUNT { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string CUSTBANK { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string CUSTOMERNAME { get; set; } [JsonProperty] public DateTime? DELETETIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string DELETEUSER { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? DOAMOUNT { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string FEEAMOUNT { get; set; } [JsonProperty, Column(Name = "FINANCIAL_CURRENCY", DbType = "varchar(20)")] public string FINANCIALCURRENCY { get; set; } = ""; [JsonProperty, Column(Name = "FINANCIAL_MONEY", DbType = "numeric(18,4)")] public decimal? FINANCIALMONEY { get; set; } = 0M; [JsonProperty, Column(Name = "FINANCIAL_RATE", DbType = "numeric(18,4)")] public decimal? FINANCIALRATE { get; set; } = 0M; [JsonProperty, Column(DbType = "varchar(50)")] public string FINANCIALVOUCHER { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string HXBILLNO { get; set; } [JsonProperty] public bool? ISDELETE { get; set; } [JsonProperty] public bool? ISEXPORT { get; set; } [JsonProperty, Column(DbType = "varchar(200)")] public string PAYBILLNO { get; set; } [JsonProperty, Column(Name = "PREPAY_CURRENCY", DbType = "varchar(20)")] public string PREPAYCURRENCY { get; set; } = ""; [JsonProperty, Column(Name = "PREPAY_MONEY", DbType = "numeric(18,4)")] public decimal? PREPAYMONEY { get; set; } = 0M; [JsonProperty, Column(Name = "PREPAY_RATE", DbType = "numeric(18,4)")] public decimal? PREPAYRATE { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? RATE { get; set; } [JsonProperty, Column(DbType = "varchar(1024)")] public string REMARK { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string REMITTANCE { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? REMITTANCEAMOUNT { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string SALECORPID { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? SELLRATE { get; set; } [JsonProperty] public int? SETTLEMODE { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string SETTLENO { get; set; } [JsonProperty] public DateTime? SETTLETIME { get; set; } [JsonProperty] public int? SETTLETYPE { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string SETTLEUSER { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? SETTLRATE { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? STLAMOUNT { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string STLCATEGROY { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string VOUCHERNO { get; set; } [JsonProperty, Column(DbType = "varchar(16)")] public string VOUNO { get; set; } } }