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.
183 lines
5.3 KiB
C#
183 lines
5.3 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 = "v_settlement", DisableSyncStructure = true)]
|
|
public partial class VSettlement {
|
|
|
|
[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; }
|
|
|
|
[JsonProperty, Column(Name = "ACCOUNTS_RATE", DbType = "numeric(18,4)")]
|
|
public decimal? ACCOUNTSRATE { get; set; }
|
|
|
|
[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; }
|
|
|
|
[JsonProperty, Column(Name = "ADVANCE_RATE", DbType = "numeric(18,4)")]
|
|
public decimal? ADVANCERATE { get; set; }
|
|
|
|
[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; }
|
|
|
|
[JsonProperty, Column(Name = "AHSR_RATE", DbType = "numeric(18,4)")]
|
|
public decimal? AHSRRATE { get; set; }
|
|
|
|
[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 = "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; }
|
|
|
|
[JsonProperty, Column(Name = "FINANCIAL_RATE", DbType = "numeric(18,4)")]
|
|
public decimal? FINANCIALRATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string FINANCIALVOUCHER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? ISADVANCEDPAY { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISDELETE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISEXPORT { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? ISINVOICE { 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; }
|
|
|
|
[JsonProperty, Column(Name = "PREPAY_RATE", DbType = "numeric(18,4)")]
|
|
public decimal? PREPAYRATE { get; set; }
|
|
|
|
[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(150)")]
|
|
public string SALECORP { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string SALECORPID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? SETTLEMODE { 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 = "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; }
|
|
|
|
}
|
|
|
|
}
|