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.

96 lines
2.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 = "IMPORT_FINANCE_BODY", DisableSyncStructure = true)]
public partial class IMPORTFINANCEBODY {
[JsonProperty, Column(DbType = "varchar(50)")]
public string BANKID { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string BSNO { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(50)")]
public string CUSTOMER { get; set; }
[JsonProperty]
public short? DAYS { get; set; }
[JsonProperty]
public DateTime? ENDDATE { get; set; }
[JsonProperty]
public DateTime? ENTERDATE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? EXCHANGERATE { get; set; }
[JsonProperty, Column(Name = "F_AMOUNT", DbType = "numeric(18,2)")]
public decimal? FAMOUNT { get; set; }
[JsonProperty, Column(Name = "F_CURRENCY", DbType = "varchar(20)")]
public string FCURRENCY { get; set; }
[JsonProperty, Column(Name = "F_NO", DbType = "varchar(50)")]
public string FNO { get; set; }
[JsonProperty, Column(Name = "F_TYPE", DbType = "varchar(1)")]
public string FTYPE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? FINEFEE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string GID { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? HANDFEE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? INTEREST { get; set; }
[JsonProperty, Column(Name = "INTEREST_RATE", DbType = "numeric(18,4)")]
public decimal? INTERESTRATE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? INTERESTUSD { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string ISFEE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string OP { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? OTFEE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? RMBAMOUNT { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? RMBVALUE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? TELXFEE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? TTLAMOUNTRMB { get; set; }
[JsonProperty, Column(Name = "Y_INTEREST_RATE", DbType = "numeric(18,4)")]
public decimal? YINTERESTRATE { get; set; }
}
}