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
926 B
24 lines
926 B
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_OTD_REPORT_EXPORT
|
|
{
|
|
public string 要货看板号 { get; set; }
|
|
public string 供应商编号 { get; set; } //VendId
|
|
public string 供应商名称 { get; set; } //VendId
|
|
public string 零件号 { get; set; }
|
|
public string 零件名称 { get; set; }
|
|
public string 要求到货时间 { get; set; }
|
|
public string 到货数量 { get; set; } //ArriveQty
|
|
public string 订单要货数量 { get; set; } //AskQty
|
|
public string 差额 { get; set; } //Qty
|
|
public string 及时数量 { get; set; } //NntimelyQty
|
|
public string 及时率 { get; set; }//OTD
|
|
public string 到货率 { get; set; }//ArriveOTD
|
|
}
|
|
}
|