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.

84 lines
2.5 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", DisableSyncStructure = true)]
public partial class IMPORTFINANCE {
[JsonProperty, Column(Name = "BANK_EXCHANGERATE", DbType = "numeric(18,4)")]
public decimal? BANKEXCHANGERATE { get; set; }
[JsonProperty, Column(Name = "BANK_INTEREST", DbType = "numeric(18,4)")]
public decimal? BANKINTEREST { get; set; }
[JsonProperty, Column(Name = "BANK_INTEREST_RATE", DbType = "numeric(18,4)")]
public decimal? BANKINTERESTRATE { get; set; }
[JsonProperty]
public DateTime? BANKENDDATE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? BANKSTLAMOUNT { get; set; }
[JsonProperty, Column(Name = "CUST_EXCHANGERATE", DbType = "numeric(18,4)")]
public decimal? CUSTEXCHANGERATE { get; set; }
[JsonProperty, Column(Name = "CUST_INTEREST", DbType = "numeric(18,4)")]
public decimal? CUSTINTEREST { get; set; }
[JsonProperty, Column(Name = "CUST_INTEREST_RATE", DbType = "numeric(18,4)")]
public decimal? CUSTINTERESTRATE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CUSTOMER { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? CUSTSTLAMOUNT { get; set; }
[JsonProperty]
public short? DAYS { get; set; }
[JsonProperty]
public DateTime? ENDDATE { get; set; }
[JsonProperty]
public DateTime? ENTERDATE { 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_STATUS", DbType = "varchar(20)")]
public string FSTATUS { get; set; }
[JsonProperty, Column(Name = "FINANCE_BANK", DbType = "varchar(50)")]
public string FINANCEBANK { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string MAINNO { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string OP { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string REMARK { get; set; }
[JsonProperty]
public DateTime? STARTDATE { get; set; }
}
}