| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace com.steering.mes.mcp.entity
- {
- public class MchOfficeResultDentity
- {
- /// <summary>
- /// 实绩编号RESULT_NO
- /// </summary>
- private string resultNo = "";
- public string ResultNo
- {
- get { return resultNo; }
- set { resultNo = value; }
- }
- /// <summary>
- /// 序号RESULT_SQE
- /// </summary>
- private string resultSqe = "";
- public string ResultSqe
- {
- get { return resultSqe; }
- set { resultSqe = value; }
- }
- /// <summary>
- /// 炉计划ID HEAT_PLAN_NO
- /// </summary>
- private string heatPlanNo = "";
- public string HeatPlanNo
- {
- get { return heatPlanNo; }
- set { heatPlanNo = value; }
- }
- /// <summary>
- /// 产线PLINE_CODE
- /// </summary>
- private string plineCode = "";
- public string PlineCode
- {
- get { return plineCode; }
- set { plineCode = value; }
- }
- /// <summary>
- /// 产线描述PLINE_NAME
- /// </summary>
- private string plineName = "";
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- /// <summary>
- /// 离线支数OFFLINE_NUM
- /// </summary>
- private string offlineNum = "";
- public string OfflineNum
- {
- get { return offlineNum; }
- set { offlineNum = value; }
- }
- /// <summary>
- /// 离线重量OFFLINE_WT
- /// </summary>
- private string offlineWt = "";
- public string OfflineWt
- {
- get { return offlineWt; }
- set { offlineWt = value; }
- }
- /// <summary>
- /// 物流去向代码GOWHERE_CODE
- /// </summary>
- private string gowhereCode = "";
- public string GowhereCode
- {
- get { return gowhereCode; }
- set { gowhereCode = value; }
- }
- /// <summary>
- /// 物流去向名称GOWHERE_NAME
- /// </summary>
- private string gowhereName = "";
- public string GowhereName
- {
- get { return gowhereName; }
- set { gowhereName = value; }
- }
- }
- }
|