| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.YdmPipeManage.Entity
- {
- class MatZcMEntity3
- {
- private string measuringSeq;
- [Description("喷印管号")]
- public string MeasuringSeq
- {
- get { return measuringSeq; }
- set { measuringSeq = value; }
- }
- private string matNo;
- [Description("材料号")]
- public string MatNo
- {
- get { return matNo; }
- set { matNo = value; }
- }
- private String judgeStoveNo;
- [Description("炉号")]
- public String JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- private String batchNo;
- [Description("批号")]
- public String BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- private double? actLen;
- [Description("长度")]
- public double? ActLen
- {
- get { return actLen; }
- set { actLen = value; }
- }
- private double? actWeight;
- [Description("重量")]
- public double? ActWeight
- {
- get { return actWeight; }
- set { actWeight = value; }
- }
- private String pipmemo;
- [Description("入库备注")]
- public String Pipmemo
- {
- get { return pipmemo; }
- set { pipmemo = value; }
- }
- }
- }
|