using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CK.SCP.Models.ScpEntity.ExcelExportEnttity { public class SCP_INVOICE_DETAIL_EXPORT { public string 发票编号 { get; set; } public string 金税票号 { get; set; } public string ERP收货单号 { get; set; } public string WMS收货单号 { get; set; } public string 项目编号 { get; set; } public string 订单号 { get; set; }//PoBillNum public string 订单行 { get; set; }//PoLineNum public string 发货单 { get; set; }//AsnBillNum public string 零件号 { get; set; }//PoBillNum public string 零件名称 { get; set; }//PartDesc1 public string 币种 { get; set; }//Currency public string 单价 { get; set; }//Price public string 采购价 { get; set; } public string 成本价 { get; set; } public string 收货日期 { get; set; } public string 开票数量 { get; set; }//Qty public string 备注 { get; set; }//Remark public string 发票金额 { get; set; } public string 订单金额 { get; set; } } }