using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KellyReport_D.Model { internal class SalesDetail { /// /// 业务 /// public string SalesName { get; set; } /// /// 申报所属月份 /// public string Month { get; set; } /// /// 发货日期 /// public DateTime? DeliveryDate { get; set; } /// /// 订单号码 /// public string OrderNumber { get; set; } /// /// 发票日期 /// public DateTime? InvoiceDate { get; set; } /// /// 發票號碼 /// public string InvoiceNumber { get; set; } /// /// 客户名称 /// public string ClientName { get; set; } /// /// 英文品名 /// public string ProductNameEN { get; set; } /// /// 数量(KG) /// public decimal? Quantity { get; set; } /// /// 含税单价 /// public decimal? PriceWithTax { get; set; } /// /// 未税金额 /// public decimal? AmountWithoutTax { get; set; } /// /// 税金13% /// public decimal? Tax { get; set; } /// /// 合計金額 /// public decimal? TotalAmount { get; set; } /// /// 备注 /// public string Remark { get; set; } } }