You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
204 lines
5.7 KiB
C#
204 lines
5.7 KiB
C#
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_ch_fee_invoice", DisableSyncStructure = true)]
|
|
public partial class VWChFeeInvoice {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string ACCOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string ACTUALCUSTOMERNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,3)")]
|
|
public decimal? AMOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string AMOUNTCAPITAL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string AMOUNTLIST { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string APPLICANT { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? APPLYTIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string BANK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string BILLNO { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? BILLSTATUS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(6)", IsNullable = false)]
|
|
public string BILLSTATUSREF { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string BSNO { 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(100)")]
|
|
public string CUSTADDRTEL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string CUSTBANK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
|
|
public string CUSTNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string CUSTRATENO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string DELETEOPERATOR { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? DELETETIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(150)")]
|
|
public string DELOPERATORNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "smalldatetime")]
|
|
public DateTime? ETD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,5)")]
|
|
public decimal? EXCHANGERATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string FAPCODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string FARCODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string FEEAMOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(5000)")]
|
|
public string FEEITEM { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,3)")]
|
|
public decimal? INVAMOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(IsIdentity = true)]
|
|
public long INVID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? INVOICECATEGORY { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string INVOICECATEGORYREF { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string INVOICECUSTNAME { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? INVOICEMAKETIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string INVOICENO { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? INVOICETYPE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string INVOICETYPEREF { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISDELETE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISNEEDFEE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISNEEDPRINT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string LICENSECODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string MBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(StringLength = 2000)]
|
|
public string NOSTL { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? OPERATETIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string OPERATOR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(150)")]
|
|
public string OPERATORNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string OPLBNAME { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "OPLBNAME_HD", DbType = "varchar(4)")]
|
|
public string OPLBNAMEHD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,3)")]
|
|
public decimal? OTCURRAMOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string POD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string POL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "decimal(18,3)")]
|
|
public decimal? PRINTAMOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string PRINTCAPITAL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string PRINTTITLE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1024)")]
|
|
public string REMARK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(20,3)")]
|
|
public decimal? TAX { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string TAXCODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "decimal(18,3)")]
|
|
public decimal? TAXRATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string VESSELVOYAGE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(12)")]
|
|
public string VOUCHERNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string VOUNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|