lss
2025-05-27 59f836bf0eb00b7707c74fe8edb8fa7662c871ab
HH.WCS.Mobox3/HH.WCS.Mobox3.JiaTong/util/Settings.cs
@@ -20,6 +20,7 @@
        public static List<TableUrl> tableUrls { get; set; }
        public static List<ElevatorLoc> elevatorLoc { get; set; }
        public static List<LocAreabyItem> locAreabyItem { get; set; }
        public static List<WareLoc> wareLoc { get; set; }
        public static int port { get; set; }
        public static string WHCode { get; set; }
        public static string FacCode { get; set; }
@@ -108,6 +109,10 @@
                            {
                                locAreabyItem = JsonConvert.DeserializeObject<List<LocAreabyItem>>(keyValue.Value.ToString());
                            }
                            if (keyValue.Name == "WareLoc")
                            {
                                wareLoc = JsonConvert.DeserializeObject<List<WareLoc>>(keyValue.Value.ToString());
                            }
                        }
                    }
                }
@@ -166,5 +171,11 @@
            public string AreaCode { get; set; }
            public string[] ItemCode { get; set; }
        }
        public class WareLoc
        {
            public string AreaCode { get; set; }
            public string PMK { get; set; }
            public string ZCW { get; set; }
        }
    }
}