| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace com.steering.mes.mcp.entity
- {
- class FrmOfficeDentity
- {
- /// <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; }
- }
- }
- }
|