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.
55 lines
1.2 KiB
55 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMAPP.FJC.Entity.ShipmentMonitor
|
|
{
|
|
/// <summary>
|
|
/// 待发运FIS数据
|
|
/// 作 者:李炳海
|
|
/// 编写日期:2017年09月30日
|
|
/// </summary>
|
|
public class ShipmentFisData
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public string PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 大众顺序号
|
|
/// </summary>
|
|
public string VWSEQ { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车型
|
|
/// </summary>
|
|
public string CARTYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 零件号
|
|
/// </summary>
|
|
public string PRODNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// R100总成描述
|
|
/// </summary>
|
|
public string R100_ASSY_DESC { get; set; }
|
|
|
|
/// <summary>
|
|
/// R100上线时间
|
|
/// </summary>
|
|
public DateTime R100_ONLINEDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// R100上线时间
|
|
/// </summary>
|
|
public string ONLINEDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 显示颜色
|
|
/// </summary>
|
|
public string DisplayColor { get; set; }
|
|
}
|
|
}
|
|
|