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.
119 lines
2.7 KiB
119 lines
2.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Model
|
|
{
|
|
public class EPasteCard
|
|
{
|
|
private string _paste_card_key;
|
|
/// <summary>
|
|
/// 贴车单主键
|
|
/// </summary>
|
|
public string PASTE_CARD_KEY
|
|
{
|
|
get { return _paste_card_key; }
|
|
set { _paste_card_key = value; }
|
|
}
|
|
private string _pastecardno;
|
|
/// <summary>
|
|
/// 贴车单号
|
|
/// </summary>
|
|
public string PASTECARDNO
|
|
{
|
|
get { return _pastecardno; }
|
|
set { _pastecardno = value; }
|
|
}
|
|
private string _pastecarddate;
|
|
/// <summary>
|
|
/// 贴车单打印时间
|
|
/// </summary>
|
|
public string PASTECARDDATE
|
|
{
|
|
get { return _pastecarddate; }
|
|
set { _pastecarddate = value; }
|
|
}
|
|
private string _pastecarddate2;
|
|
/// <summary>
|
|
/// 贴车单补打时间
|
|
/// </summary>
|
|
public string PASTECARDDATE2
|
|
{
|
|
get { return _pastecarddate2; }
|
|
set { _pastecarddate2 = value; }
|
|
}
|
|
private string _operator;
|
|
/// <summary>
|
|
/// 操作者
|
|
/// </summary>
|
|
public string OPERATOR
|
|
{
|
|
get { return _operator; }
|
|
set { _operator = value; }
|
|
}
|
|
private string _productionname;
|
|
/// <summary>
|
|
/// 生产线名称
|
|
/// </summary>
|
|
public string PRODUCTIONNAME
|
|
{
|
|
get { return _productionname; }
|
|
set { _productionname = value; }
|
|
}
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
private string _createtime;
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public string CREATETIME
|
|
{
|
|
get { return _createtime; }
|
|
set { _createtime = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
private string _plantname;
|
|
/// <summary>
|
|
/// 工作重心
|
|
/// </summary>
|
|
public string PLANTNAME
|
|
{
|
|
get { return _plantname; }
|
|
set { _plantname = value; }
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 贴车单明细表
|
|
/// </summary>
|
|
//private IList<EPasteDetailsCard> _DetailsCardlist;
|
|
/// <summary>
|
|
/// 贴车单明细
|
|
/// </summary>
|
|
public List<EPasteDetailsCard> DetailsCardlist
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public EFailLog FailLog
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string VINLACK
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
}
|
|
}
|
|
|