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.
157 lines
3.7 KiB
157 lines
3.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Model
|
|
{
|
|
/// <summary>
|
|
/// FIS发货效验明细
|
|
/// </summary>
|
|
public class EPasteDetailsCard
|
|
{
|
|
/// <summary>
|
|
/// FIS发货效验主键
|
|
/// </summary>
|
|
private string _pastedetailed_card_key;
|
|
/// <summary>
|
|
/// FIS发货效验主键
|
|
/// </summary>
|
|
public string PASTEDETAILED_CARD_KEY
|
|
{
|
|
get { return _pastedetailed_card_key; }
|
|
set { _pastedetailed_card_key = value; }
|
|
}
|
|
private string _fis_key;
|
|
/// <summary>
|
|
/// FIS接口表主键
|
|
/// </summary>
|
|
public string FIS_KEY
|
|
{
|
|
get { return _fis_key; }
|
|
set { _fis_key = value; }
|
|
}
|
|
private string _paste_card_key;
|
|
/// <summary>
|
|
/// 贴车单主键
|
|
/// </summary>
|
|
public string PASTE_CARD_KEY
|
|
{
|
|
get { return _paste_card_key; }
|
|
set { _paste_card_key = value; }
|
|
}
|
|
private string _sanbarcode;
|
|
/// <summary>
|
|
/// 扫描条码
|
|
/// </summary>
|
|
public string SANBARCODE
|
|
{
|
|
get { return _sanbarcode; }
|
|
set { _sanbarcode = value; }
|
|
}
|
|
/// <summary>
|
|
/// 产品主键
|
|
/// </summary>
|
|
public string PRODUCT_PID
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
private string _vwseq;
|
|
/// <summary>
|
|
/// 扫描条码
|
|
/// </summary>
|
|
public string VWSEQ
|
|
{
|
|
get { return _vwseq; }
|
|
set { _vwseq = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 条码扫描时间
|
|
/// </summary>
|
|
private string _scandate;
|
|
/// <summary>
|
|
/// 条码扫描时间
|
|
/// </summary>
|
|
public string SCANDATE
|
|
{
|
|
get { return _scandate; }
|
|
set { _scandate = value; }
|
|
}
|
|
/// <summary>
|
|
/// 零件号
|
|
/// </summary>
|
|
private string _prodno;
|
|
/// <summary>
|
|
/// 零件号
|
|
/// </summary>
|
|
public string PRODNO
|
|
{
|
|
get { return _prodno; }
|
|
set { _prodno = value; }
|
|
}
|
|
/// <summary>
|
|
/// 总成描述
|
|
/// </summary>
|
|
private string _carsetdesc_cn;
|
|
/// <summary>
|
|
/// 总成描述
|
|
/// </summary>
|
|
public string CARSETDESC_CN
|
|
{
|
|
get { return _carsetdesc_cn; }
|
|
set { _carsetdesc_cn = value; }
|
|
}
|
|
/// <summary>
|
|
/// 底盘号
|
|
/// </summary>
|
|
private string _vin;
|
|
/// <summary>
|
|
/// 底盘号
|
|
/// </summary>
|
|
public string VIN
|
|
{
|
|
get { return _vin; }
|
|
set { _vin = value; }
|
|
}
|
|
/// <summary>
|
|
/// 上线时间
|
|
/// </summary>
|
|
private string _cp5a;
|
|
/// <summary>
|
|
/// 上线时间
|
|
/// </summary>
|
|
public string CP5A
|
|
{
|
|
get { return _cp5a; }
|
|
set { _cp5a = value; }
|
|
}
|
|
/// <summary>
|
|
/// 车型
|
|
/// </summary>
|
|
private string _lineno;
|
|
/// <summary>
|
|
/// 车型
|
|
/// </summary>
|
|
public string LINENO
|
|
{
|
|
get { return _lineno; }
|
|
set { _lineno = value; }
|
|
}
|
|
/// <summary>
|
|
/// 当前guidview行号
|
|
/// </summary>
|
|
private int _dgvrowindex;
|
|
/// <summary>
|
|
/// 当前guidview行号
|
|
/// </summary>
|
|
public int DGVROWINDEX
|
|
{
|
|
get { return _dgvrowindex; }
|
|
set { _dgvrowindex = value; }
|
|
}
|
|
|
|
public string KIN { get; set; }
|
|
}
|
|
}
|
|
|