using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace com.steering.mes.mcp.entity { /// /// 计划投入产出物料描述 /// [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; } } } }