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