using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace com.steering.mes.mcp.entity { [Serializable] public class PlanCondition { private string beginTime; public string BeginTime { get { return beginTime; } set { beginTime = value; } } private string endTime; public string EndTime { get { return endTime; } set { endTime = 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 string[] proLineNos; public string[] ProLineNos { get { return proLineNos; } set { proLineNos = value; } } } }