using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CK.SCP.Models.ScpEntity { public class InvoiceCreateQueryParm { public string ReceiveID { set; get; } public string VendId { set; get; } public string Modify { set; get; } public string IsAll { set; get; } public string Tax { set; get; } public string CJ { set; get; } public string TZ { set; get; } } public class SCP_OTD_EXPORT { public string VendId { get; set; } //供应商编号 public string VendName { get; set; }//供应商名称 public string PartCode { get; set; } //零件号 public string PartName { get; set; } //零件名 public decimal ArriveQty { get; set; } //到货数量 public decimal AskQty { get; set; } //订单要货数量 public decimal Qty { get; set; }//差额 public decimal NntimelyQty { get; set; } //不及时数量 public decimal OTD { get; set; } // public decimal ArriveOTD { get; set; }//到货率 public Nullable BeginTime { get; set; }//开始时间 public Nullable EndTime { get; set; } //结束时间 } }