You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

36 lines
1.3 KiB

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<System.DateTime> BeginTime { get; set; }//开始时间
public Nullable<System.DateTime> EndTime { get; set; } //结束时间
}
}