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.

90 lines
2.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 = "Import_Saledetail", DisableSyncStructure = true)]
public partial class ImportSaledetail {
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(Name = "Agencrate_Cust", DbType = "numeric(18,2)")]
public decimal? AgencrateCust { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNT { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNTRMB { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? BOXCOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string BSNO { get; set; } = "";
[JsonProperty, Column(Name = "CARGO_GID", DbType = "varchar(50)", IsNullable = false)]
public string CARGOGID { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string CURRENCY { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? DirectPrice { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(50)")]
public string DirectShop { get; set; } = "";
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? EXCHANGERATE { get; set; }
[JsonProperty, Column(Name = "EXCHANGERATE_Cust", DbType = "numeric(18,4)")]
public decimal? EXCHANGERATECust { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? FUNDRATE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? PREPAYMENT { get; set; } = 0M;
[JsonProperty, Column(Name = "PREPAYMENT_ACT", DbType = "numeric(18,2)")]
public decimal? PREPAYMENTACT { get; set; } = 0M;
[JsonProperty, Column(DbType = "nchar(10)")]
public string PRICE { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string PriceRemark { get; set; } = "";
[JsonProperty, Column(DbType = "numeric(18,6)")]
public decimal? PRICERMB { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(150)")]
public string REMARK { get; set; }
[JsonProperty, Column(Name = "SALES_GID", DbType = "varchar(50)", IsNullable = false)]
public string SALESGID { get; set; }
[JsonProperty, Column(Name = "salesno", DbType = "varchar(50)")]
public string Salesno { get; set; } = "";
[JsonProperty, Column(Name = "STOCKDATE_1")]
public DateTime? STOCKDATE1 { get; set; }
[JsonProperty, Column(Name = "STOCKDATE_2")]
public DateTime? STOCKDATE2 { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? WEIGHT { get; set; }
}
}