using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace com.steering.mes.mcp.entity
{
class FrmOfficeDentity
{
///
/// 人员名称
///
private string name = "";
public string Name
{
get { return name; }
set { name = value; }
}
///
/// 班次
///
private string proBc = "";
public string ProBc
{
get { return proBc; }
set { proBc = value; }
}
///
/// 产线
///
private string plineCode = "";
public string PlineCode
{
get { return plineCode; }
set { plineCode = value; }
}
///
/// 人员名称
///
private string remark = "";
public string Remark
{
get { return remark; }
set { remark = value; }
}
}
}