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.
24 lines
943 B
24 lines
943 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
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; } //结束时间
|
|
}
|
|
}
|
|
|