using BPASmartClient.Helper; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.MorkMOC { public class PolymerBatching { public List plcData = new List(); public PolymerBatching() { plcData.Add(new PLCData { Positon = 1,WeightVar = "VW200", StartUpVar = "M4.0" }); plcData.Add(new PLCData { Positon = 2, WeightVar = "VW202", StartUpVar = "M4.1" }); plcData.Add(new PLCData { Positon = 3, WeightVar = "VW204", StartUpVar = "M4.2" }); plcData.Add(new PLCData { Positon = 4, WeightVar = "VW206", StartUpVar = "M4.3" }); plcData.Add(new PLCData { Positon = 5, WeightVar = "VW208", StartUpVar = "M4.4" }); plcData.Add(new PLCData { Positon = 6, WeightVar = "VW210", StartUpVar = "M4.5" }); plcData.Add(new PLCData { Positon = 7, WeightVar = "VW212", StartUpVar = "M4.6" }); plcData.Add(new PLCData { Positon = 8, WeightVar = "VW214", StartUpVar = "M4.7" }); plcData.Add(new PLCData { Positon = 9, WeightVar = "VW216", StartUpVar = "M5.0" }); plcData.Add(new PLCData { Positon = 10, WeightVar = "VW218", StartUpVar = "M5.1" }); plcData.Add(new PLCData { Positon = 11, WeightVar = "VW220", StartUpVar = "M5.2" }); plcData.Add(new PLCData { Positon = 12, WeightVar = "VW222", StartUpVar = "M5.3" }); plcData.Add(new PLCData { Positon = 13, WeightVar = "VW224", StartUpVar = "M5.4" }); plcData.Add(new PLCData { Positon = 14, WeightVar = "VW226", StartUpVar = "M5.5" }); } } public class PLCData { /// /// 通道位置 /// public int Positon; /// /// PLC通道重量点位 /// public string WeightVar; /// /// PLC通道启动点位 /// public string StartUpVar; } }