using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.DosingSystem.Model { public class DeviceAddress { /// /// 设备名称起始地址 /// public static string DeviceName { get; set; } = "LW0"; /// /// 料仓重量反馈起始地址 /// public static string WeightFeedback { get; set; } = "LW52";//LW204 /// /// 重量设置地址 /// public static string WeightSet { get; set; } = "LW21";//LW200 /// /// 启动信号地址 /// public static string Start { get; set; } = "LW20";//LW210 /// /// 下料重量反馈地址 /// public static string CutWeightFeedback { get; set; } = "LW54";//LW202 /// /// 设备运行状态地址 /// public static string RunStatus { get; set; } = "LW51";//LW206 } }