using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace com.steering.mes.mcp.entity { /// /// 管加工计划实体类 /// [Serializable] public class McpPlan { private string planNo; public string PlanNo { get { return planNo; } set { planNo = value; } } private string proLineNo; public string ProLineNo { get { return proLineNo; } set { proLineNo = value; } } private string proLineName; public string ProLineName { get { return proLineName; } set { proLineName = value; } } private string batchNo; public string BatchNo { get { return batchNo; } set { batchNo = value; } } private string heatNo; public string HeatNo { get { return heatNo; } set { heatNo = value; } } private string lotNo; public string LotNo { get { return lotNo; } set { lotNo = value; } } private bool isSupervise; public bool IsSupervise { get { return isSupervise; } set { isSupervise = value; } } private string produceDate; public string ProduceDate { get { return produceDate; } set { produceDate = value; } } private int duration; public int Duration { get { return duration; } set { duration = value; } } private string orderNo; public string OrderNo { get { return orderNo; } set { orderNo = value; } } private double weight; public double Weight { get { return weight; } set { weight = value; } } private int pieces; public int Pieces { get { return pieces; } set { pieces = value; } } private string remark; public string Remark { get { return remark; } set { remark = value; } } } }