| | |
| | | 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; } |
| | |
| | | { |
| | | 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(); |
| | |
| | | |
| | | } |
| | | |
| | | public class DeviceConfig |
| | | { |
| | | public string deviceNo { get; set; } |
| | | public string deviceName { get; set; } |
| | | public int roadway { get; set; } |
| | | } |
| | | |
| | | public class ConnectLoc |
| | | { |