杨前锦
2025-07-01 a93b0e99036c24b9bd58c79bf5e7364b1ba28bae
HH.WCS.Mobox3/HH.WCS.Mobox3.YNJT_PT/util/Settings.cs
@@ -18,6 +18,7 @@
        public static List<ConnectLoc> connectLocList { get; set; }
        public static List<OnLineLoc> onLineLocList { get; set; }
        public static List<CallOutLoc> callOutLocList { get; set; }
        public static List<DeviceConfig> deviceConfigList { get; set; }
        public static int port { get; set; }
        public static string WHCode { get; set; }
        public static string FacCode { get; set; }
@@ -65,6 +66,10 @@
                            {
                                callOutLocList = JsonConvert.DeserializeObject<List<CallOutLoc>>(keyValue.Value.ToString());
                            }
                            if (keyValue.Name == "DeviceConfig")
                            {
                                deviceConfigList = JsonConvert.DeserializeObject<List<DeviceConfig>>(keyValue.Value.ToString());
                            }
                            if (keyValue.Name == "StockArea")
                            {
                                stockArea = keyValue.Value.ToString();
@@ -81,6 +86,12 @@
        }
        public class DeviceConfig
        {
            public string deviceNo { get; set; }
            public string deviceName { get; set; }
            public int roadway { get; set; }
        }
        public class ConnectLoc
        {