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