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