using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace com.steering.mes.mcp.entity
{
class FrmMchPersonentity
{
///
/// 炉号
///
private string heatPlanNo = "";
public string HeatPlanNo
{
get { return heatPlanNo; }
set { heatPlanNo = value; }
}
///
/// 批号ZY_BATCH_ID
///
private string zyBatchId = "";
public string ZyBatchId
{
get { return zyBatchId; }
set { zyBatchId = value; }
}
///
/// 产线
///
private string plineName = "";
public string PlineName
{
get { return plineName; }
set { plineName = value; }
}
///
/// 工序
///
private string opProcess = "";
public string OpProcess
{
get { return opProcess; }
set { opProcess = value; }
}
///
/// 离线去向
///
private string officeD = "";
public string OfficeD
{
get { return officeD; }
set { officeD = value; }
}
///
/// 人员姓名
///
private string manName = "";
public string ManName
{
get { return manName; }
set { manName = value; }
}
///
/// 人员编码
///
private string manCode = "";
public string ManCode
{
get { return manCode; }
set { manCode = value; }
}
///
/// 产线
///
private string plineCode = "";
public string PlineCode
{
get { return plineCode; }
set { plineCode = value; }
}
///
/// 班次
///
private string proBc = "";
public string ProBc
{
get { return proBc; }
set { proBc = value; }
}
///
/// 备注
///
private string remark = "";
public string Remark
{
get { return remark; }
set { remark = value; }
}
}
}