| | |
| | | public static string AppSecret { get; set; } |
| | | public static List<deviceInfo> deviceInfos { get; set; } |
| | | public static List<TableUrl> tableUrls { get; set; } |
| | | public static List<DpjErrorInfo> dpjErrorInfos { get; set; } |
| | | public static List<ElevatorLoc> elevatorLoc { get; set; } |
| | | public static List<LocAreabyItem> locAreabyItem { get; set; } |
| | | public static List<WareLoc> wareLoc { get; set; } |
| | |
| | | { |
| | | wareLoc = JsonConvert.DeserializeObject<List<WareLoc>>(keyValue.Value.ToString()); |
| | | } |
| | | if (keyValue.Name == "DpjErrorInfo") |
| | | { |
| | | dpjErrorInfos = JsonConvert.DeserializeObject<List<DpjErrorInfo>>(keyValue.Value.ToString()); |
| | | } |
| | | } |
| | | } |
| | | } |
| | |
| | | public int id { get; set; } |
| | | public string url { get; set; } |
| | | } |
| | | public class DpjErrorInfo |
| | | { |
| | | |
| | | public int ErrorCode { get; set; } |
| | | public string ErrorInfo { get; set; } |
| | | } |
| | | |
| | | public class ElevatorLoc |
| | | { |