| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace com.steering.mes.mcp.entity
- {
- /// <summary>
- /// 计划投入产出物料描述
- /// </summary>
- [Serializable]
- public class McpPlanIO
- {
- private string planNo;
- public string PlanNo
- {
- get { return planNo; }
- set { planNo = value; }
- }
- private int ioType;
- public int IoType
- {
- get { return ioType; }
- set { ioType = value; }
- }
- private string materialCode;
- public string MaterialCode
- {
- get { return materialCode; }
- set { materialCode = value; }
- }
- private string materialName;
- public string MaterialName
- {
- get { return materialName; }
- set { materialName = value; }
- }
- private string standard;
- public string Standard
- {
- get { return standard; }
- set { standard = value; }
- }
- private int pieces;
- public int Pieces
- {
- get { return pieces; }
- set { pieces = value; }
- }
- private double weight;
- public double Weight
- {
- get { return weight; }
- set { weight = value; }
- }
- private double lengthMin;
- public double LengthMin
- {
- get { return lengthMin; }
- set { lengthMin = value; }
- }
- private double lengthMax;
- public double LengthMax
- {
- get { return lengthMax; }
- set { lengthMax = value; }
- }
- }
- }
|