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