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.
BaoGuanSYHT/djy.Model/db/ChFeeInvoiceapplication.cs

138 lines
3.8 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 = "ch_fee_invoiceapplication", DisableSyncStructure = true)]
public partial class ChFeeInvoiceapplication {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
[JsonProperty, Column(DbType = "varchar(50)")]
public string ACTUALCUSTOMERNAME { 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, Column(DbType = "numeric(18,3)")]
public decimal? APPLYAMOUNT { get; set; }
[JsonProperty]
public DateTime? APPLYTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string BILLNO { get; set; }
[JsonProperty]
public int? BILLSTATUS { 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(50)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string CUSTRATENO { get; set; }
[JsonProperty]
public DateTime? DELETETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string DELETEUSER { get; set; }
[JsonProperty]
public DateTime? ENTERTIME { get; set; }
[JsonProperty, Column(DbType = "smalldatetime")]
public DateTime? ETD { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string FEEAMOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(8000)")]
public string FEEITEM { get; set; }
[JsonProperty, Column(DbType = "numeric(18,3)")]
public decimal? INVAMOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string INVBILLNO { get; set; }
[JsonProperty]
public int? INVOICECATEGORY { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string INVOICECUSTNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string INVOICENO { get; set; }
[JsonProperty]
public bool? ISAPPLY { get; set; }
[JsonProperty]
public bool? ISDELETE { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string MBLNO { get; set; }
[JsonProperty]
public DateTime? OPERATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string OPERATOR { get; set; }
[JsonProperty, Column(DbType = "numeric(18,3)")]
public decimal? OTCURRAMOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string PAYCOMPANYID { 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 = "numeric(18,5)")]
public decimal? RATE { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string RECVCURR { get; set; }
[JsonProperty, Column(DbType = "varchar(1024)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string VESSELVOYAGE { get; set; }
}
}