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 = "VW_PrintPayFeeAuditReport2", DisableSyncStructure = true)] public partial class VWPrintPayFeeAuditReport2 { [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? AMOUNT { get; set; } [JsonProperty, Column(DbType = "decimal(18,3)")] public decimal? AMOUNTRMB { get; set; } [JsonProperty, Column(DbType = "decimal(18,3)")] public decimal? AMOUNTUSD { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string APPLICANT { get; set; } [JsonProperty] public DateTime? APPLYTIME { get; set; } [JsonProperty] public DateTime? AUDITTIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string AUDITUSER { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string BILLNO { get; set; } [JsonProperty] public int? BILLSTATUS { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string CHEQUEPAYABLE { get; set; } [JsonProperty, Column(DbType = "varchar(4000)")] public string CNTRTOTAL { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string COMPANYID { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string CURRENCY { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string CUSTNO { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string CUSTOMERNAME { get; set; } [JsonProperty, Column(Name = "CUSTOMERNAME_yuan", DbType = "varchar(50)")] public string CUSTOMERNAMEYuan { get; set; } [JsonProperty] public DateTime? DELETETIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string DELETEUSER { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string DESCRIPTION { get; set; } [JsonProperty] public DateTime? ENTERTIME { get; set; } [JsonProperty] public DateTime? ETD { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string FEENAME { get; set; } [JsonProperty] public int? FEETYPE { get; set; } [JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(Name = "GID_A", DbType = "varchar(36)", IsNullable = false)] public string GIDA { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string GOODSNAME { get; set; } [JsonProperty] public bool? ISAPP { get; set; } [JsonProperty] public bool? ISDELETE { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? KGS { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string MBLNO { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string NUMBERPLATE { get; set; } [JsonProperty] public DateTime? PAYABLETIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string PAYAPPID { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string POR { get; set; } [JsonProperty, Column(DbType = "decimal(18,3)")] public decimal? RATE { get; set; } [JsonProperty, Column(DbType = "varchar(8000)")] public string REMARK { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string RMBAccount { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string RMBBank { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string RMBOnlineNO { get; set; } [JsonProperty, Column(DbType = "decimal(18,3)")] public decimal? SETTLERATE { get; set; } [JsonProperty, Column(DbType = "decimal(18,3)")] public decimal? SETTLERMB { get; set; } [JsonProperty] public DateTime? SETTLETIME { get; set; } [JsonProperty] public int? SETTLETYPE { get; set; } [JsonProperty, Column(DbType = "decimal(18,3)")] public decimal? SETTLEUSD { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string SETTLEUSER { get; set; } [JsonProperty, Column(DbType = "varchar(150)", IsNullable = false)] public string SHOWNAME { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string USDAccount { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string USDBank { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string USDOnlineNO { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string VESSEL { get; set; } [JsonProperty, Column(DbType = "varchar(12)")] public string VOYNO { get; set; } } }