using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace QMAPP.FJC.Entity.ShipmentMonitor
{
///
/// 在途数量数据
/// 作 者:李炳海
/// 编写日期:2017年09月30日
///
public class OnTheWayQTYData
{
///
/// 零件号
///
public string PRODNO { get; set; }
///
/// R100总成描述
///
public string R100_ASSY_DESC { get; set; }
///
/// 数量
///
public string QTY { get; set; }
}
}