using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using TeamAAS_VP.Resources.Languages; namespace TeamAAS_VP.Models.PLC { public class PlcHotMeltAddress { //描述 public string Description { get; set; } public PlcAddress Shield { get; set; } public PlcAddress Wright_Exe { get; set; } public PlcAddress CurentTemperature { get; set; } public PlcAddress DesTemperature { get; set; } public PlcAddress StartTemperature { get; set; } public PlcAddress StopTemperature { get; set; } public PlcAddress WriteTemperature { get; set; } public PlcAddress CurentPressureN { get; set; } public PlcAddress CurentPressureKg { get; set; } public PlcAddress SetPressure { get; set; } public PlcAddress MaxPressure { get; set; } public PlcAddress MinPressure { get; set; } public PlcAddress StopPressureN { get; set; } public PlcAddress StopPressureKg { get; set; } public PlcAddress StableTime { get; set; } public PlcHotMeltAddress() { Description ="热熔温度压力地址"; Shield = new PlcAddress() { Description ="屏蔽温控器", DataType = "Bool" }; Wright_Exe = new PlcAddress() { Description = "温度设定写入", DataType = "Bool" }; CurentTemperature = new PlcAddress() { Description = "当前温度", DataType = "int16" }; DesTemperature = new PlcAddress() { Description = "当前设定温度", DataType = "int16" }; StartTemperature = new PlcAddress() { Description = "开始温度", DataType = "int16" }; StopTemperature = new PlcAddress() { Description = "结束温度", DataType = "int16" }; WriteTemperature = new PlcAddress() { Description = "设置温度", DataType = "int16" }; CurentPressureN = new PlcAddress() { Description = "当前压力N", DataType = "float" }; CurentPressureKg = new PlcAddress() { Description = "当前压力Kg", DataType = "float" }; SetPressure = new PlcAddress() { Description = "设定压力", DataType = "float" }; MaxPressure = new PlcAddress() { Description = "最大压力", DataType = "float" }; MinPressure = new PlcAddress() { Description = "最小压力", DataType = "float" }; StopPressureN = new PlcAddress() { Description = "结束压力N", DataType = "float" }; StopPressureKg = new PlcAddress() { Description = "结束压力Kg", DataType = "float" }; StableTime = new PlcAddress() { Description = "保压时间", DataType = "int32" }; } } }